diff options
Diffstat (limited to 'tests/single.lua')
-rw-r--r-- | tests/single.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/single.lua b/tests/single.lua index 6faf448..f5f63f3 100644 --- a/tests/single.lua +++ b/tests/single.lua @@ -177,13 +177,13 @@ do local nv = load("return " .. s)() assert(v == nv and math.type(v) == math.type(nv)) end - -- checkQ("\0\0\1\255\u{234}") - -- checkQ(math.maxinteger) - -- checkQ(math.mininteger) - -- checkQ(math.pi) + checkQ("\0\0\1\255\u{234}") + checkQ(math.maxinteger) + checkQ(math.mininteger) + checkQ(math.pi) checkQ(0.1) - -- checkQ(true) - -- checkQ(nil) - -- checkQ(false) - -- checkerror("no literal", string.format, "%q", {}) + checkQ(true) + checkQ(nil) + checkQ(false) + checkerror("no literal", string.format, "%q", {}) end |