From d3c9a28c25252948e678e16400efab73d30266ba Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Tue, 22 Jul 2014 16:25:36 -0400 Subject: [PATCH] fix console.log calling for non-firebug environments --- tests/mithril-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mithril-tests.js b/tests/mithril-tests.js index 1a61a1b6..c4fe3127 100644 --- a/tests/mithril-tests.js +++ b/tests/mithril-tests.js @@ -1578,4 +1578,4 @@ function testMithril(mock) { //mocks testMithril(mock.window) -test.print(console.log) +test.print(function(value) {console.log(value)})