aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/util_array_spec.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_array_spec.lua b/spec/util_array_spec.lua
index 04d0cc28..1d9da947 100644
--- a/spec/util_array_spec.lua
+++ b/spec/util_array_spec.lua
@@ -43,6 +43,7 @@ describe("util.array", function ()
local b = array({ "c", "d" });
assert.truthy(a1 == a2);
assert.falsy(a1 == b);
+ assert.falsy(a1 == { "a", "b" }, "Behavior of metatables changed in Lua 5.3");
end);
end);