Fix typo in bound3 test which was breaking under LuaJIT
This commit is contained in:
parent
7667ea9a3d
commit
d845a479ac
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user