From 17c4378f509de7dcb86867cb598dceb239df82fe 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 9ad0ae6f8c..83fa712f59 100644 --- a/tests/ckeditor.js +++ b/tests/ckeditor.js @@ -154,7 +154,7 @@ describe( 'DecoupledEditor build', () => { } ); it( 'image works', () => { - const data = '
'; + const data = '
'; editor.setData( data ); expect( editor.getData() ).to.equal( data );