Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkaye committed May 19, 2022
1 parent fe79379 commit a4fa65b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class RetryTestRule(val retryCount: Int = 3) : TestRule {
for (i in 0 until retryCount) {
try {
base.evaluate()
if(i > 0) {
if (i > 0) {
println("Retried test $i times")
}
return
Expand Down

0 comments on commit a4fa65b

Please sign in to comment.