aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJez Ng2012-10-29 17:56:32 -0400
committerJez Ng2012-10-29 18:28:33 -0400
commit76622cd99cf671531cfa21c5d6243f3e4e185116 (patch)
treebf0e1922a7f872ea044d3828f3b9e1fdcd67c1c8 /tests
parentc0af54eac713be14d1e3eceeca23139455abb408 (diff)
downloadvimium-76622cd99cf671531cfa21c5d6243f3e4e185116.tar.bz2
Convert strings to numbers when saving options page.
This avoids the need to continually re-parse the strings each time we load the option value.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/settings_test.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/settings_test.coffee b/tests/unit_tests/settings_test.coffee
index f86d63dc..4599ff03 100644
--- a/tests/unit_tests/settings_test.coffee
+++ b/tests/unit_tests/settings_test.coffee
@@ -1,7 +1,7 @@
require "./test_helper.js"
{Utils} = require "../../lib/utils.js"
-Utils.getCurrentVersion = -> '1.39'
+Utils.getCurrentVersion = -> '1.42'
global.localStorage = {}
{Settings} = require "../../background_scripts/settings.js"