Browse Source

Fix table properties integration tests.

Maciej Gołaszewski 5 years ago
parent
commit
491b6aa3e7

+ 1 - 1
packages/ckeditor5-table/tests/tableproperties/tablepropertiesediting-integration.js

@@ -35,7 +35,7 @@ describe( 'table properties', () => {
 			it( 'should properly downcast table with Alignment plugin enabled', () => {
 				model.change( writer => writer.setAttribute( 'alignment', 'right', table ) );
 
-				assertTableStyle( editor, null, 'float:right;margin-right:0;' );
+				assertTableStyle( editor, null, 'float:right;' );
 			} );
 		} );