Преглед изворни кода

Tests: Fixed test broken in the previous commit.

Piotrek Koszuliński пре 10 година
родитељ
комит
e489e91d9b
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/ckeditor5-engine/tests/treeview/manual/typing.js

+ 1 - 1
packages/ckeditor5-engine/tests/treeview/manual/typing.js

@@ -30,5 +30,5 @@ function handleTyping( evt, mutations ) {
 		return;
 	}
 
-	mutation.node.setText( mutation.newText );
+	mutation.node.data = mutation.newText;
 }