summaryrefslogtreecommitdiff
path: root/ext/spl/tests/spl_autoload_014.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/spl_autoload_014.phpt')
-rw-r--r--ext/spl/tests/spl_autoload_014.phpt4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/spl/tests/spl_autoload_014.phpt b/ext/spl/tests/spl_autoload_014.phpt
index 782fe8d07e..3c7cc38f63 100644
--- a/ext/spl/tests/spl_autoload_014.phpt
+++ b/ext/spl/tests/spl_autoload_014.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: spl_autoload_unregister() with closures and invokables
+SPL: spl_autoload_unregister() with closures and invocables
--FILE--
<?php
$closure = function($class) {
@@ -38,10 +38,8 @@ spl_autoload_unregister($al1);
$y = new TestY;
?>
-===DONE===
--EXPECT--
closure called with class TestX
Autoloader('d1') called with TestX
WorkingAutoloader() called with TestX
WorkingAutoloader() called with TestY
-===DONE===