Fix typo in bound3 test which was breaking under LuaJIT

This commit is contained in:
mcc 2019-11-29 21:08:04 -05:00
parent 7667ea9a3d
commit d845a479ac

View File

@ -46,7 +46,7 @@ describe("bound3:", function()
it("clones a bound3", function()
local a = bound3(vec3(1,2,3), vec3(4,5,6))
local b = a:clone()
a.max = new vec3(9,9,9)
a.max = vec3.new(9,9,9)
assert.is.equal(a.min, b.min)
assert.is.not_equal(a.max, b.max)
end)