diff --git a/spec/inspect_spec.lua b/spec/inspect_spec.lua index 91e46ea..5f9d46e 100644 --- a/spec/inspect_spec.lua +++ b/spec/inspect_spec.lua @@ -78,7 +78,7 @@ describe( 'inspect', function() if has_rawlen then it('handles arrays with a __len metatable correctly (ignoring the __len metatable and using rawlen)', function() local arr = setmetatable({1,2,3}, {__len = function() return nil end}) - assert.equals("{ 1, 2, 3 }", inspect(arr)) + assert.equals("{ 1, 2, 3,\n = {\n __len = \n }\n}", inspect(arr)) end) end