Skip to content

Commit 05261c7

Browse files
committed
tests/lapi: fix formatting
1 parent 14a7826 commit 05261c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/lapi/builtin_pairs_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ local function TestOneInput(buf)
2828
local MAX_N = 1000
2929
local count = fdp:consume_integer(0, MAX_N)
3030
local tbl = fdp:consume_integers(test_lib.MIN_INT, test_lib.MAX_INT, count)
31-
-- Use string keys to activate hash part of the table.
31+
-- Use string keys to activate hash part of the table.
3232
tbl.a = fdp:consume_string(test_lib.MAX_STR_LEN)
3333
tbl.b = fdp:consume_string(test_lib.MAX_STR_LEN)
3434
for key, value in pairs(tbl) do

tests/lapi/os_setlocale_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ local function TestOneInput(buf)
1919
})
2020
local locale_string = os.setlocale(locale, category)
2121
assert(type(locale_string) == "string" or
22-
locale_string == nil)
22+
locale_string == nil)
2323
end
2424

2525
local args = {

0 commit comments

Comments
 (0)