From a80e7485658adeaf66f300a00eafe205f19da48a Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 27 Jul 2022 08:47:53 +1200 Subject: [PATCH] [php] Add missing qualification in test suite helper This would cause an error due to failing to find the function to call if certain testcase checks failed. Bug introduced in eaf311a650c104e40aad356863e965f0b2969b35 --- Examples/test-suite/php/tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/test-suite/php/tests.php b/Examples/test-suite/php/tests.php index 8561ef826..92e554741 100644 --- a/Examples/test-suite/php/tests.php +++ b/Examples/test-suite/php/tests.php @@ -194,7 +194,7 @@ class check { } static function fail($pattern) { - fail_(null, $pattern); + check::fail_(null, $pattern); } static function warn($pattern) {