From e46f8d588140d035c45b32a754636d2e600f7832 Mon Sep 17 00:00:00 2001 From: ludbek Date: Mon, 11 Jul 2016 20:56:39 +0545 Subject: [PATCH] fixed syntax error --- test/mithril.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mithril.js b/test/mithril.js index c87bc142..1e9cbcfa 100644 --- a/test/mithril.js +++ b/test/mithril.js @@ -223,6 +223,6 @@ describe("m()", function () { var args = {age: 12} - expect(m.bind(m, component, args).to.throw(); + expect(m.bind(m, component, args)).to.throw() }) })