From 7287a0acd41cf63db0e65d0ec597bc854a81d85a Mon Sep 17 00:00:00 2001 From: Nicole White Date: Sat, 5 Sep 2015 16:08:34 -0700 Subject: [PATCH] Fix lint errors in variable-spec.js --- test/variable-spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/variable-spec.js b/test/variable-spec.js index cf06f5b..23fb201 100644 --- a/test/variable-spec.js +++ b/test/variable-spec.js @@ -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"); }); });