From ff85714b248808124eb4faac5de8227d578a1a71 Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Wed, 28 Sep 2016 11:52:18 -0700 Subject: [PATCH] syntax for a `for` loop is different than `forEach` --- spec/core/SpySpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/core/SpySpec.js b/spec/core/SpySpec.js index acaefae9..3a736893 100644 --- a/spec/core/SpySpec.js +++ b/spec/core/SpySpec.js @@ -73,7 +73,7 @@ describe('Spies', function () { var spy = jasmineUnderTest.createSpy(functions[arity].name, someFunction); expect(spy.length).toEqual(arity); - }); + } }); });