Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

Commit

Permalink
Fix lint errors in variable-spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolewhite committed Sep 5, 2015
1 parent 94f4b1b commit 7287a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/variable-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ describe("A variable", function() {
});

it("should throw an error if initialized with an integer", function() {
expect(function(){new Variable(5)}).toThrow("InvalidArgument");
expect(function(){new Variable(5);}).toThrow("InvalidArgument");
});

it("should throw an error if initialized with a float", function() {
expect(function(){new Variable(5.1)}).toThrow("InvalidArgument");
expect(function(){new Variable(5.1);}).toThrow("InvalidArgument");
});
});

Expand Down

0 comments on commit 7287a0a

Please sign in to comment.