diff --git a/tests/classes/static_mix_1.phpt b/tests/classes/static_mix_1.phpt index 47950b31650..729b83384fd 100644 --- a/tests/classes/static_mix_1.phpt +++ b/tests/classes/static_mix_1.phpt @@ -1,5 +1,5 @@ --TEST-- -You cannot overload astatic methods with a non static methods +You cannot overload a static method with a non static method --SKIPIF-- --FILE-- @@ -21,6 +21,6 @@ pass::show(); fail::show(); echo "Done\n"; // shouldn't be displayed of cause -?> +?> --EXPECTF-- Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d \ No newline at end of file diff --git a/tests/classes/static_mix_2.phpt b/tests/classes/static_mix_2.phpt index 949b9a1b8d6..c6e386dc97d 100644 --- a/tests/classes/static_mix_2.phpt +++ b/tests/classes/static_mix_2.phpt @@ -1,5 +1,5 @@ --TEST-- -You cannot overload a non static methods with a static methods +You cannot overload a non static method with a static method --SKIPIF-- --FILE--