Skip to content

Commit 9b6edb3

Browse files
author
Thomas Reggi
committed
fix things?
1 parent c5cd9e2 commit 9b6edb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/utils.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ describe('utils', function() {
117117
this.clock.tick(250);
118118
});
119119

120-
it("should immediately schedule if the clock is unreliable", function (done) {
120+
it('should immediately schedule if the clock is unreliable', function(done) {
121121
let clockCalled = 0;
122122
let lastTime = now();
123123
const marks = [];
124124
const executor = makeInterruptableAsyncInterval(
125-
(callback) => {
125+
callback => {
126126
marks.push(now() - lastTime);
127127
lastTime = now();
128128
callback();
@@ -141,7 +141,7 @@ describe('utils', function() {
141141
}
142142

143143
return now();
144-
},
144+
}
145145
}
146146
);
147147

0 commit comments

Comments
 (0)