]> granicus.if.org Git - php/commitdiff
remove paths from is_a and is_subclass tests
authorAlan Knowles <alan_k@php.net>
Tue, 27 Sep 2011 07:59:47 +0000 (07:59 +0000)
committerAlan Knowles <alan_k@php.net>
Tue, 27 Sep 2011 07:59:47 +0000 (07:59 +0000)
ext/standard/tests/class_object/is_a_error_001.phpt
ext/standard/tests/class_object/is_subclass_of_error_001.phpt

index 06674bc6a151b0429d3b970b7dad19156e6f7766..6518a03c0f909bce09a80dd974ebb840cd521c06 100644 (file)
@@ -39,16 +39,16 @@ echo "Done";
 
 -- Testing is_a() function with more than expected no. of arguments --
 
-Warning: is_a() expects at most 3 parameters, 4 given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_a_error_001.php on line 17
+Warning: is_a() expects at most 3 parameters, 4 given in %s on line 17
 NULL
 
 -- Testing is_a() function with non-boolean in last position --
 
-Warning: is_a() expects parameter 3 to be boolean, object given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_a_error_001.php on line 21
+Warning: is_a() expects parameter 3 to be boolean, object given in %s on line 21
 NULL
 
 -- Testing is_a() function with less than expected no. of arguments --
 
-Warning: is_a() expects at least 2 parameters, 1 given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_a_error_001.php on line 27
+Warning: is_a() expects at least 2 parameters, 1 given in %s on line 27
 NULL
 Done
\ No newline at end of file
index f3ab9f30652a074db6b410acb89adfbe3d350144..987dcd47be503841273da4c5b68eff98a27cce61 100644 (file)
@@ -40,7 +40,7 @@ echo "Done";
 
 -- Testing is_subclass_of() function with more than expected no. of arguments --
 
-Warning: is_subclass_of() expects at most 3 parameters, 4 given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_subclass_of_error_001.php on line 17
+Warning: is_subclass_of() expects at most 3 parameters, 4 given in %s on line 17
 NULL
 
 -- Testing is_subclass_of() function with more than typo style invalid 3rd argument --
@@ -48,11 +48,11 @@ bool(false)
 
 -- Testing is_subclass_of() function with more than invalid 3rd argument --
 
-Warning: is_subclass_of() expects parameter 3 to be boolean, object given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_subclass_of_error_001.php on line 26
+Warning: is_subclass_of() expects parameter 3 to be boolean, object given in %s on line 26
 NULL
 
 -- Testing is_subclass_of() function with less than expected no. of arguments --
 
-Warning: is_subclass_of() expects at least 2 parameters, 1 given in /home/alan/git/PHP_5_3/ext/standard/tests/class_object/is_subclass_of_error_001.php on line 31
+Warning: is_subclass_of() expects at least 2 parameters, 1 given in %s on line 31
 NULL
 Done