diff --git a/.tests/Vector3/new.test.lua b/.tests/Vector3/new.test.lua index b74e5b1..54a5c72 100644 --- a/.tests/Vector3/new.test.lua +++ b/.tests/Vector3/new.test.lua @@ -7,18 +7,18 @@ describe("Vector3.add", function() Vector3.new(3, 4, 5) ) end) - it("should throw an error on invalid x", function() - assert.has.errors(function() + it("should not throw an error on invalid x", function() + assert.has_no.errors(function() Vector3.new("cheese", 4, 5) end) end) - it("should throw an error on invalid y", function() - assert.has.errors(function() + it("should not throw an error on invalid y", function() + assert.has_no.errors(function() Vector3.new(4, "cheese", 5) end) end) - it("should throw an error on invalid z", function() - assert.has.errors(function() + it("should not throw an error on invalid z", function() + assert.has_no.errors(function() Vector3.new(66, 2, "cheese") end) end)