Skip to content

Commit

Permalink
Spelling fixes for test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
DerelictDrone committed Nov 16, 2023
1 parent 8ebc392 commit 299bc81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/wire/zvm/zvm_tests.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function ZVMTestSuite.FinishTest(fail)
finalFail = fail
end
if ZVMTestSuite.CurrentWarnings > 0 then
print("Compiler Warnings from "..ZVMTestSuite.TestQueue[#ZVMTestSuite.TestQueue].." "..ZVMTestSuite.CurrentWarnings)
print("Compiler Warnings from "..ZVMTestSuite.TestQueue[#ZVMTestSuite.TestQueue]..": "..ZVMTestSuite.CurrentWarnings)
ZVMTestSuite.CurrentWarnings = 0
end
ZVMTestSuite.TestStatuses[#ZVMTestSuite.TestStatuses+1] = finalFail -- auto fail on return nil
Expand All @@ -91,7 +91,7 @@ function ZVMTestSuite.FinishTest(fail)
if failed > 1 then
errormod = "s"
end
print(failed.." Failed test"..errormod..", "..passed.." Passed test"..passmod.." Compiler Warnings: "..ZVMTestSuite.Warnings)
print(failed.." Failed test"..errormod..", "..passed.." Passed test"..passmod..", Compiler Warnings: "..ZVMTestSuite.Warnings)
end
end

Expand Down

0 comments on commit 299bc81

Please sign in to comment.