Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1303 from Mossop/bug941907
Browse files Browse the repository at this point in the history
Fix Bug 941907: Fix usage of old test style., r=@jsantell
  • Loading branch information
jsantell committed Nov 23, 2013
2 parents 4f3ef6c + e092440 commit 5dee2e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-simple-prefs.js
Expand Up @@ -41,7 +41,7 @@ exports.testSetGetBool = function(assert) {
};

// TEST: setting and getting preferences with special characters work
exports.testSpecialChars = function(assert) {
exports.testSpecialChars = function(assert, done) {
let chars = specialChars.split("");
let len = chars.length;

Expand All @@ -54,7 +54,7 @@ exports.testSpecialChars = function(assert) {

// end test
if (++count == len)
test.done();
done();
})
sp[char] = rand;
});
Expand Down

0 comments on commit 5dee2e9

Please sign in to comment.