Browse Source

Tests: Fixed broken getBorderWidths() test.

Aleksander Nowodzinski 8 years ago
parent
commit
fab20a71de
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-utils/tests/dom/getborderwidths.js

+ 2 - 2
packages/ckeditor5-utils/tests/dom/getborderwidths.js

@@ -14,8 +14,8 @@ describe( 'getBorderWidths()', () => {
 		testUtils.sinon.stub( global.window, 'getComputedStyle' ).returns( {
 			borderTopWidth: '10px',
 			borderRightWidth: '20px',
-			borderLeftWidth: '30px',
-			borderBottomWidth: '40px'
+			borderBottomWidth: '30px',
+			borderLeftWidth: '40px'
 		} );
 
 		const elementMock = {};