From 088d48f5eaf2c43e0c1c980212329ffbbbfdd002 Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Tue, 30 Jul 2019 11:25:27 +0200 Subject: [PATCH] All tests require an image that exists. It will not cause the 404 error. --- tests/ckeditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ckeditor.js b/tests/ckeditor.js index d2acd7bfbb..812cbb203f 100644 --- a/tests/ckeditor.js +++ b/tests/ckeditor.js @@ -137,7 +137,7 @@ describe( 'ClassicEditor build', () => { } ); it( 'image works', () => { - const data = '
'; + const data = '
'; editor.setData( data ); expect( editor.getData() ).to.equal( data );