Update grammer for 'stats_skip' too

This commit is contained in:
JeremyStar™ 2024-04-06 13:56:40 +02:00
parent e90ab5efa9
commit 7c8406a2b2
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -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!)")