Browse Source

Fix getPlugin() test after ff8d6792 (oops)

Renée Kooi 7 years ago
parent
commit
0445313f7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/Core.test.js

+ 1 - 1
src/core/Core.test.js

@@ -88,7 +88,7 @@ describe('src/Core', () => {
 
     it('should return the plugin that matches the specified name', () => {
       const core = new Core()
-      expect(core.getPlugin('foo')).toEqual(false)
+      expect(core.getPlugin('foo')).toEqual(null)
 
       core.use(AcquirerPlugin1)
       const plugin = core.getPlugin('TestSelector1')