Skip to content

Commit

Permalink
Fix the single wrong conformance test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekkonot committed Oct 20, 2023
1 parent a634dbd commit e71a49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conformance/bitwise.lua
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,6 @@ assert(bit32.btest("1", 3) == true)
assert(bit32.countlz("42") == 26)
assert(bit32.countrz("42") == 1)
assert(bit32.extract("42", 1, 3) == 5)
assert(bit32.byteswap("0xa1b2c3d4") == 0xd4c3d2a1)
assert(bit32.byteswap("0xa1b2c3d4") == 0xd4c3b2a1)

return('OK')

0 comments on commit e71a49c

Please sign in to comment.