Skip to content

Commit

Permalink
Make testnames lowercase for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Jul 28, 2024
1 parent d4a71f4 commit d27e106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testkit.luau
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ local test: Test?
local tests: { Test } = {}

local function output_test_result(test: Test)
print(color.white_underline(test.name))
print(color.white_underline(string.lower(test.name)))

for _, case in test.cases do
local status = ({
Expand Down

0 comments on commit d27e106

Please sign in to comment.