diff options
Diffstat (limited to 'ext/mysqli/tests/bug30967.phpt')
-rw-r--r-- | ext/mysqli/tests/bug30967.phpt | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/mysqli/tests/bug30967.phpt b/ext/mysqli/tests/bug30967.phpt deleted file mode 100644 index 0a82d0d43c..0000000000 --- a/ext/mysqli/tests/bug30967.phpt +++ /dev/null @@ -1,23 +0,0 @@ ---TEST-- -Bug #30967 testcase (properties) ---SKIPIF-- -<?php require_once('skipif.inc'); ?> ---FILE-- -<?php - include "connect.inc"; - - class mysql1 extends mysqli { - } - - class mysql2 extends mysql1 { - } - - $mysql = new mysql2($host, $user, $passwd, "test"); - - $mysql->query("THIS DOES NOT WORK"); - printf("%d\n", $mysql->errno); - - $mysql->close(); -?> ---EXPECTF-- -1064 |