From ee8ab3561b9722c327bac0b1ea082ab510156977 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Gerardy Date: Sun, 11 Sep 2016 17:00:06 +0200 Subject: [PATCH] Break a test of the new suite --- test/mithril.withAttr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mithril.withAttr.js b/test/mithril.withAttr.js index aae26656..7314c999 100644 --- a/test/mithril.withAttr.js +++ b/test/mithril.withAttr.js @@ -12,6 +12,6 @@ describe("m.withAttr()", function () { var spy = sinon.spy() var object = {} m.withAttr("test", spy, object)({currentTarget: {test: "foo"}}) - expect(spy).to.be.calledOn(object).and.calledWith("foo") + expect(spy).to.be.calledOn(object).and.calledWith("Ofoo") }) })