diff options
Diffstat (limited to 'tests/test.lua')
-rwxr-xr-x | tests/test.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test.lua b/tests/test.lua index e0f99f6..8c50b02 100755 --- a/tests/test.lua +++ b/tests/test.lua | |||
@@ -22,7 +22,7 @@ local function gen_utf16_escaped() | |||
22 | local count = 0 | 22 | local count = 0 |
23 | 23 | ||
24 | local function append_escape(code) | 24 | local function append_escape(code) |
25 | local esc = string.format('\\u%04X', code) | 25 | local esc = ('\\u%04X'):format(code) |
26 | table.insert(utf16_escaped, esc) | 26 | table.insert(utf16_escaped, esc) |
27 | end | 27 | end |
28 | 28 | ||
@@ -388,7 +388,7 @@ local cjson_tests = { | |||
388 | true, { false, 2, 10 } }, | 388 | true, { false, 2, 10 } }, |
389 | } | 389 | } |
390 | 390 | ||
391 | print(string.format("==> Testing Lua CJSON version %s\n", json._VERSION)) | 391 | print(("==> Testing Lua CJSON version %s\n"):format(json._VERSION)) |
392 | 392 | ||
393 | util.run_test_group(cjson_tests) | 393 | util.run_test_group(cjson_tests) |
394 | 394 | ||
@@ -402,7 +402,7 @@ local pass, total = util.run_test_summary() | |||
402 | if pass == total then | 402 | if pass == total then |
403 | print("==> Summary: all tests succeeded") | 403 | print("==> Summary: all tests succeeded") |
404 | else | 404 | else |
405 | print(string.format("==> Summary: %d/%d tests failed", total - pass, total)) | 405 | print(("==> Summary: %d/%d tests failed"):format(total - pass, total)) |
406 | os.exit(1) | 406 | os.exit(1) |
407 | end | 407 | end |
408 | 408 | ||