Remove semicolons from spec
This commit is contained in:
parent
9f94652792
commit
ba98109d33
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@ describe('systemPreferences module', function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
it('should return a non-empty string', function () {
|
it('should return a non-empty string', function () {
|
||||||
let accentColor = systemPreferences.getAccentColor();
|
let accentColor = systemPreferences.getAccentColor()
|
||||||
assert.notEqual(accentColor, null);
|
assert.notEqual(accentColor, null)
|
||||||
assert(accentColor.length > 0);
|
assert(accentColor.length > 0)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue