Skip to content

Commit

Permalink
"passed" -> "checked"
Browse files Browse the repository at this point in the history
  • Loading branch information
EndlessCheng committed Mar 27, 2021
1 parent 2f1ab33 commit 64e0f37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion leetcode/testutil/leetcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ func CompareInf(t *testing.T, inputGenerator, runACFunc, runFunc interface{}) {
}

if tc == checkTC {
t.Logf("%d cases passed.", tc)
t.Logf("%d cases checked.", tc)
checkTC <<= 1
}

Expand Down
4 changes: 2 additions & 2 deletions main/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func AssertEqualRunResultsInf(t *testing.T, inputGenerator func() string, runFun
}

if tc == checkTC {
t.Logf("%d cases passed.", tc)
t.Logf("%d cases checked.", tc)
checkTC <<= 1
}

Expand Down Expand Up @@ -264,7 +264,7 @@ func CheckRunResultsInf(t *testing.T, inputGenerator func() (string, OutputCheck
}

if tc == checkTC {
t.Logf("%d cases passed.", tc)
t.Logf("%d cases checked.", tc)
checkTC <<= 1
}

Expand Down

0 comments on commit 64e0f37

Please sign in to comment.