From f593f589a00ede01b0c64b9be92571c262d839e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Go=C5=82aszewski?= Date: Fri, 7 Dec 2018 13:03:32 +0100 Subject: [PATCH] Change widget schema definition in tests to reflect changes in selection post-fixer. --- tests/blockquotecommand.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/blockquotecommand.js b/tests/blockquotecommand.js index ee78c1c..3163221 100644 --- a/tests/blockquotecommand.js +++ b/tests/blockquotecommand.js @@ -33,7 +33,8 @@ describe( 'BlockQuoteCommand', () => { model.schema.extend( 'widget', { allowIn: '$root', - isLimit: true + isLimit: true, + isObject: true } ); model.schema.extend( '$text', { allowIn: 'widget' } );