aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-12-31 17:02:12 +1030
committerMark Pulford <mark@kyne.com.au>2011-12-31 17:02:12 +1030
commit5dd3207e5fda2f8f502a8a2f32f5484ea3f758b5 (patch)
tree254c1ed1584ba289b08c836090738b7b5d028e91 /tests
parent0637fcaf549ce120efa541c8d7445cb36c30e53f (diff)
downloadlua-cjson-5dd3207e5fda2f8f502a8a2f32f5484ea3f758b5.tar.gz
lua-cjson-5dd3207e5fda2f8f502a8a2f32f5484ea3f758b5.tar.bz2
lua-cjson-5dd3207e5fda2f8f502a8a2f32f5484ea3f758b5.zip
Remove "update_locale" Lua function
Only update the locale when the module is initialised. cjson.new() can be used if the locale changes part way through program execution.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 99ac73a..6cb5666 100755
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -211,14 +211,14 @@ local escape_tests = {
211local locale_tests = { 211local locale_tests = {
212 function () 212 function ()
213 os.setlocale("cs_CZ") 213 os.setlocale("cs_CZ")
214 json.update_locale() 214 json.new()
215 return "Setting locale to cs_CZ (comma separator)" 215 return "Setting locale to cs_CZ (comma separator)"
216 end, 216 end,
217 { json.encode, { 1.5 }, true, { '1.5' } }, 217 { json.encode, { 1.5 }, true, { '1.5' } },
218 { json.decode, { "[ 10, \"test\" ]" }, true, { { 10, "test" } } }, 218 { json.decode, { "[ 10, \"test\" ]" }, true, { { 10, "test" } } },
219 function () 219 function ()
220 os.setlocale("C") 220 os.setlocale("C")
221 json.update_locale() 221 json.new()
222 return "Reverting locale to POSIX" 222 return "Reverting locale to POSIX"
223 end 223 end
224} 224}