Remove semicolons from spec

This commit is contained in:
Samuel Attard 2016-09-17 02:27:46 +10:00
parent 9f94652792
commit ba98109d33
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF

View file

@ -9,9 +9,9 @@ describe('systemPreferences module', function () {
}
it('should return a non-empty string', function () {
let accentColor = systemPreferences.getAccentColor();
assert.notEqual(accentColor, null);
assert(accentColor.length > 0);
let accentColor = systemPreferences.getAccentColor()
assert.notEqual(accentColor, null)
assert(accentColor.length > 0)
})
})