Update grammer for 'stats_skip' too
This commit is contained in:
parent
e90ab5efa9
commit
7c8406a2b2
1 changed files with 2 additions and 1 deletions
|
@ -94,7 +94,8 @@ func _ready() -> void:
|
|||
else: lresu(" -> [color=yellow]" + str(stats_warn) + " tests have passed with warnings[/color]")
|
||||
if stats_error == 1: lresu(" -> [color=red]" + str(stats_error) + " test has failed[/color]")
|
||||
else: lresu(" -> [color=red]" + str(stats_error) + " tests have failed[/color]")
|
||||
lresu(" -> [color=gray]" + str(stats_skip) + " tests were skipped[/color]")
|
||||
if stats_skip == 1: lresu(" -> [color=gray]" + str(stats_skip) + " test was skipped[/color]")
|
||||
else: lresu(" -> [color=gray]" + str(stats_skip) + " tests were skipped[/color]")
|
||||
if stats_forgot != 0:
|
||||
if stats_forgot == 1: lerror(" -> " + str(stats_forgot) + " test did not update 'test_status' (fix that!)")
|
||||
else: lerror(" -> " + str(stats_forgot) + " tests did not update 'test_status' (fix that!)")
|
||||
|
|
Loading…
Reference in a new issue