let DEV_2 be trunk
[m6w6/ext-http] / tests / HttpMessage_009_bug16700.phpt
diff --git a/tests/HttpMessage_009_bug16700.phpt b/tests/HttpMessage_009_bug16700.phpt
deleted file mode 100644 (file)
index 4c25eb7..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Bug #16700 - child classes of HttpMessage cannot not have array properties
---SKIPIF--
-<?php
-include 'skip.inc';
-checkver(5);
-?>
---FILE--
-<?php
-echo "-TEST\n";
-
-class ChildMessage extends HttpMessage {
-    public $properties = array();
-}
-
-$child = new ChildMessage;
-$child->properties['foo'] = 'bar';
-echo $child->properties['foo'], "\n";
-echo "Done\n";
-?>
---EXPECTF--
-%aTEST
-bar
-Done