Skip to content

Commit 25e8083

Browse files
committed
Fix formatting
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
1 parent 2e5280a commit 25e8083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ test "Zig function integration" {
198198

199199
// Test 11: Function returning array (should create Lua table with integer indices)
200200
try globals.set("arrayFunc", testArrayReturn);
201-
const array_1 = try lua.eval("return arrayFunc(10)[1]", .{}, i32); // Lua is 1-indexed
201+
const array_1 = try lua.eval("return arrayFunc(10)[1]", .{}, i32); // Lua is 1-indexed
202202
try expectEq(array_1, 10);
203203
const array_2 = try lua.eval("return arrayFunc(10)[2]", .{}, i32);
204204
try expectEq(array_2, 20);

0 commit comments

Comments
 (0)