Skip to content

Commit

Permalink
Fix lint issues in test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohansen committed Feb 25, 2017
1 parent 0b8a0be commit 9b2b875
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/lolex-test.js
Expand Up @@ -41,9 +41,9 @@ describe("issue #59", function () {
});
});

describe('issue #73', function() {
it('should install with date object', function () {
var date = new Date('2015-09-25');
describe("issue #73", function () {
it("should install with date object", function () {
var date = new Date("2015-09-25");
var clock = lolex.install(date);
assert.same(clock.now, 1443139200000);
clock.uninstall();
Expand Down

0 comments on commit 9b2b875

Please sign in to comment.