diff --git a/spec/api-system-preferences-spec.js b/spec/api-system-preferences-spec.js index 80f33bddbbe..16992c31e11 100644 --- a/spec/api-system-preferences-spec.js +++ b/spec/api-system-preferences-spec.js @@ -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) }) })