Fixing red build. Not sure why, but this spec was green in Chrome and Node.js

This commit is contained in:
Davis W. Frank
2013-06-03 10:31:52 -07:00
parent 0ac497db6b
commit fbb9f53524

View File

@@ -3,7 +3,7 @@ describe("toHaveBeenCalledWith", function() {
var util = { var util = {
contains: j$.createSpy('delegated-contains').andReturn(true) contains: j$.createSpy('delegated-contains').andReturn(true)
}, },
matcher = j$.matchers.toHaveBeenCalledWith(util) matcher = j$.matchers.toHaveBeenCalledWith(util),
calledSpy = j$.createSpy('called-spy'), calledSpy = j$.createSpy('called-spy'),
result; result;