Module: tools Branch: master Commit: 0fb4aa9ddb7ea476d065617eb1b6a3f4af8c090e URL: https://source.winehq.org/git/tools.git/?a=commit;h=0fb4aa9ddb7ea476d065617e...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Jan 21 11:16:22 2021 +0100
testbot/TestWTBS: Fix a typo in the TestUnits check.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/tests/TestWTBS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/tests/TestWTBS b/testbot/tests/TestWTBS index b4460b8..e8d8f3f 100755 --- a/testbot/tests/TestWTBS +++ b/testbot/tests/TestWTBS @@ -652,7 +652,7 @@ sub CheckJobTree($) { foreach my $TestUnit (split / +/, $TypeInfo->{TestUnits}) { - ok($TestUnits->{$Type}->{$TestUnit}, "Check that $TestUnit was tested by $Type VMs for job ". $Job->Id) or + ok($TestUnits->{$Type}->{$TestUnit}, "Check that $TestUnit was tested by $Type VMs for job ". $Job->Id) or diag("TestUnits=", join(" ", sort keys %{$TestUnits->{$Type}})); } }