We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c029b commit 7c97e4bCopy full SHA for 7c97e4b
spec/inspect_spec.lua
@@ -423,7 +423,11 @@ describe( 'inspect', function()
423
assert.equals(unindent('{}'), inspector(foo))
424
assert.equals(unindent('{}'), inspector(bar))
425
assert.equals(unindent('{}'), inspector(baz))
426
- assert.equals(unindent('{}'), inspector(spam))
+ if is_luajit and is_aarch64 then
427
+ assert.equals(unindent('{}'), inspector(spam))
428
+ else
429
+ ... do the other thing
430
+ end
431
assert.equals(unindent([[
432
{
433
<metatable> = {}
0 commit comments