From e4daa977cbe64a646bf3d6711879fd9b04259475 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 13 Aug 2012 12:22:19 -0700 Subject: [PATCH] Update for new ini version Fixed a regression where 'foo = true' started being interpreted as {foo:'true'} instead of {foo:true} --- test/ini.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ini.js b/test/ini.js index ab03b2f..5572a6e 100644 --- a/test/ini.js +++ b/test/ini.js @@ -14,5 +14,5 @@ console.log(_ini, _json) } -test({hello: 'true'}) +test({hello: true})