From c9eb9c0dbe7e19755eac2acd3ec51f22ce871408 Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Sun, 2 Jul 2017 22:16:00 +0200 Subject: [PATCH] Fixed broken tests. --- tests/panel/balloon/contextualballoon.js | 2 +- tests/toolbar/contextual/contextualtoolbar.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/panel/balloon/contextualballoon.js b/tests/panel/balloon/contextualballoon.js index fd5849d0..da5651c2 100644 --- a/tests/panel/balloon/contextualballoon.js +++ b/tests/panel/balloon/contextualballoon.js @@ -56,7 +56,7 @@ describe( 'ContextualBalloon', () => { describe( 'pluginName', () => { it( 'should return plugin by name', () => { - expect( editor.plugins.get( 'ui/contextualballoon' ) ).to.equal( balloon ); + expect( editor.plugins.get( 'ContextualBalloon' ) ).to.equal( balloon ); } ); } ); diff --git a/tests/toolbar/contextual/contextualtoolbar.js b/tests/toolbar/contextual/contextualtoolbar.js index 3cde89e9..d0ac78d1 100644 --- a/tests/toolbar/contextual/contextualtoolbar.js +++ b/tests/toolbar/contextual/contextualtoolbar.js @@ -109,7 +109,7 @@ describe( 'ContextualToolbar', () => { describe( 'pluginName', () => { it( 'should return plugin by its name', () => { - expect( editor.plugins.get( 'ui/contextualtoolbar' ) ).to.equal( contextualToolbar ); + expect( editor.plugins.get( 'ContextualToolbar' ) ).to.equal( contextualToolbar ); } ); } );