Explorar el Código

Tests: Fixed broken getBorderWidths() test.

Aleksander Nowodzinski hace 8 años
padre
commit
fab20a71de
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 = {};