Skip to content

Commit 7c97e4b

Browse files
mceplkikito
andauthored
Update spec/inspect_spec.lua
Co-authored-by: Enrique García Cota <[email protected]>
1 parent 31c029b commit 7c97e4b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

spec/inspect_spec.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,11 @@ describe( 'inspect', function()
423423
assert.equals(unindent('{}'), inspector(foo))
424424
assert.equals(unindent('{}'), inspector(bar))
425425
assert.equals(unindent('{}'), inspector(baz))
426-
assert.equals(unindent('{}'), inspector(spam))
426+
if is_luajit and is_aarch64 then
427+
assert.equals(unindent('{}'), inspector(spam))
428+
else
429+
... do the other thing
430+
end
427431
assert.equals(unindent([[
428432
{
429433
<metatable> = {}

0 commit comments

Comments
 (0)