summaryrefslogtreecommitdiff
path: root/tests/lang/bug23489.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug23489.phpt')
-rw-r--r--tests/lang/bug23489.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lang/bug23489.phpt b/tests/lang/bug23489.phpt
deleted file mode 100644
index 645bb1b7df..0000000000
--- a/tests/lang/bug23489.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #23489 (ob_start() is broken with method callbacks)
---FILE--
-<?php
-class Test {
- function Test() {
- ob_start(
- array(
- $this, 'transform'
- )
- );
- }
-
- function transform($buffer) {
- return 'success';
- }
-}
-
-$t = new Test;
-?>
-failure
---EXPECT--
-success