Skip to content

Commit fe576f1

Browse files
committed
style(warnings): added missing semi colons
1 parent 443029d commit fe576f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/BrowserSpecs.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ describe('browser', function(){
174174
expect(deferId1).toBeDefined();
175175
expect(deferId2).toBeDefined();
176176
expect(deferId1).not.toEqual(deferId2);
177-
})
177+
});
178178

179179

180180
describe('cancel', function() {
181181
it('should allow tasks to be canceled with returned deferId', function() {
182182
var log = [],
183-
deferId1 = browser.defer(function() { log.push('cancel me') }),
184-
deferId2 = browser.defer(function() { log.push('ok') }),
185-
deferId3 = browser.defer(function() { log.push('cancel me, now!') });
183+
deferId1 = browser.defer(function() { log.push('cancel me'); }),
184+
deferId2 = browser.defer(function() { log.push('ok'); }),
185+
deferId3 = browser.defer(function() { log.push('cancel me, now!'); });
186186

187187
expect(log).toEqual([]);
188188
browser.defer.cancel(deferId1);

0 commit comments

Comments
 (0)