mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Remove semicolons from spec
This commit is contained in:
@@ -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)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user