Explorar el Código

Tests: Update after merge from master.

Piotrek Koszuliński hace 10 años
padre
commit
d7b533cee2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-ui/tests/model.js

+ 1 - 1
packages/ckeditor5-ui/tests/model.js

@@ -686,7 +686,7 @@ describe( 'Model', () => {
 			it( 'should fire a single change event per bound attribute', () => {
 				const vehicle = new Car();
 				const car = new Car( { color: 'red', year: 1943 } );
-				const spy = bender.sinon.spy();
+				const spy = sinon.spy();
 
 				vehicle.on( 'change', spy );