diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/json/pass1.json | 6 | ||||
-rw-r--r-- | spec/util_dataforms_spec.lua | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/spec/json/pass1.json b/spec/json/pass1.json index 70e26854..4d46cfcb 100644 --- a/spec/json/pass1.json +++ b/spec/json/pass1.json @@ -20,8 +20,8 @@ "backslash": "\\", "controls": "\b\f\n\r\t", "slash": "/ & \/", - "alpha": "abcdefghijklmnopqrstuvwyz", - "ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWYZ", + "alpha": "abcdefghijklmnopqrstuvwxyz", + "ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "digit": "0123456789", "0123456789": "digit", "special": "`1~!@#$%^&*()_+-={':[,]}|;.</>?", @@ -55,4 +55,4 @@ 0.1e1, 1e-1, 1e00,2e+00,2e-00 -,"rosebud"]
\ No newline at end of file +,"rosebud"] diff --git a/spec/util_dataforms_spec.lua b/spec/util_dataforms_spec.lua index e0a9bb9b..5293238a 100644 --- a/spec/util_dataforms_spec.lua +++ b/spec/util_dataforms_spec.lua @@ -452,14 +452,14 @@ describe("util.dataforms", function () assert.string(e.number); end); - it("bounds-cheking work works", function () + it("bounds-checking work works", function () local d,e = f:data(f:form({number = 100})); assert.not_equal(100, d.number); assert.table(e); assert.string(e.number); end); - it("serializes largeer ints okay", function () + it("serializes larger ints okay", function () local x = f:form{number=1125899906842624} assert.equal("1125899906842624", x:find("field/value#")) end); |