From d1fc5df0518ca6b4a750648b8b8861deb29e7a23 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 10 Feb 2016 18:56:43 +0000 Subject: [PATCH] Fix typo in Plugin constructor test --- src/tests/gui/html/js/test_plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/gui/html/js/test_plugin.js b/src/tests/gui/html/js/test_plugin.js index 9044361e..1f97d36b 100644 --- a/src/tests/gui/html/js/test_plugin.js +++ b/src/tests/gui/html/js/test_plugin.js @@ -177,10 +177,10 @@ describe('Plugin', () => { it('should set isPriorityGlobal to passed key\'s value', () => { const plugin = new loot.Plugin({ name: 'test', - isEmpty: true, + isPriorityGlobal: true, }); - plugin.isEmpty.should.be.true(); + plugin.isPriorityGlobal.should.be.true(); }); it('should set id to the plugins name without spaces', () => {