Skip to content

Commit c818210

Browse files
committed
Fixed missing semicolon
1 parent 83a0135 commit c818210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/spreadElement.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ export class SpreadElementTest {
1919
public spreadElement51() {
2020
// Cant test functional because our VM doesn't run on 5.1
2121
const lua = util.transpileString(`[].push(...${JSON.stringify([1, 2, 3])});`, {luaTarget: LuaTarget.Lua51});
22-
Expect(lua).toBe("__TS__ArrayPush({}, unpack({1,2,3}))");
22+
Expect(lua).toBe("__TS__ArrayPush({}, unpack({1,2,3}));");
2323
}
2424
}

0 commit comments

Comments
 (0)