Skip to content

Commit

Permalink
Remove finish if statement at end
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Jul 28, 2024
1 parent 376f15e commit aeea895
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
14 changes: 10 additions & 4 deletions libs/Leventine/leventine.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,19 @@ TEST("leventine", function()

end

do CASE("has_match")
do CASE("has_match_false")

end

do CASE("has_match_sensitive")
do CASE("has_match_sensitive_false")

end

do CASE("has_match_true")

end
end)

if not FINISH() then error(nil, 0) end
do CASE("has_match_sensitive_true")

end
end)
4 changes: 1 addition & 3 deletions libs/Url/url.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,4 @@ TEST("url", function()

CHECK(tbl.meow == "mrrp" and tbl.mrrp == "meow")
end
end)

if not FINISH() then error(nil, 0) end
end)
4 changes: 1 addition & 3 deletions libs/race/race.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ TEST("RACE", function()
}, "yay")

CHECK(result == "yay! i return!")
end)

if not FINISH() then error(nil, 0) end
end)

0 comments on commit aeea895

Please sign in to comment.