From fbb9f53524945ad2358456c24d170d33f3289eb7 Mon Sep 17 00:00:00 2001 From: "Davis W. Frank" Date: Mon, 3 Jun 2013 10:31:52 -0700 Subject: [PATCH] Fixing red build. Not sure why, but this spec was green in Chrome and Node.js --- spec/core/matchers/toHaveBeenCalledWithSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/core/matchers/toHaveBeenCalledWithSpec.js b/spec/core/matchers/toHaveBeenCalledWithSpec.js index 96f52158..25b08d2a 100644 --- a/spec/core/matchers/toHaveBeenCalledWithSpec.js +++ b/spec/core/matchers/toHaveBeenCalledWithSpec.js @@ -3,7 +3,7 @@ describe("toHaveBeenCalledWith", function() { var util = { contains: j$.createSpy('delegated-contains').andReturn(true) }, - matcher = j$.matchers.toHaveBeenCalledWith(util) + matcher = j$.matchers.toHaveBeenCalledWith(util), calledSpy = j$.createSpy('called-spy'), result;