Fix typo in Plugin constructor test

This commit is contained in:
Oliver Hamlet
2016-03-05 11:49:26 +00:00
parent 210dd14a10
commit d1fc5df051
+2 -2
View File
@@ -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', () => {