Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fixed broken tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Jul 2, 2017
1 parent e2c0841 commit c9eb9c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/panel/balloon/contextualballoon.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
} );
} );

Expand Down
2 changes: 1 addition & 1 deletion tests/toolbar/contextual/contextualtoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
} );
} );

Expand Down

0 comments on commit c9eb9c0

Please sign in to comment.