From fd076b7a39174007ae35d68c10db54f11d8cb646 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 30 Aug 2016 20:48:03 +0100 Subject: [PATCH] Fixed silent JS test error --- src/tests/gui/html/js/test_plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/gui/html/js/test_plugin.js b/src/tests/gui/html/js/test_plugin.js index 06d23744..3cdfae8c 100644 --- a/src/tests/gui/html/js/test_plugin.js +++ b/src/tests/gui/html/js/test_plugin.js @@ -1276,7 +1276,7 @@ describe('PluginCardContent', () => { it('should return an array missing the "do not clean" message when the "do not clean" messages filter is enabled', () => { filters.hideDoNotCleanMessages = true; plugin.getCardContent(filters).messages.should.deepEqual([ - type: plugin.messages[0], + plugin.messages[0], ]); });