summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/031.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/031.phpt')
-rw-r--r--ext/mysqli/tests/031.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/mysqli/tests/031.phpt b/ext/mysqli/tests/031.phpt
deleted file mode 100644
index 743b4b2d0f..0000000000
--- a/ext/mysqli/tests/031.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-function test: mysqli_error
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
- include "connect.inc";
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect($host, $user, $passwd);
- $error = mysqli_error($link);
- var_dump($error);
-
- mysqli_select_db($link, "test");
-
- mysqli_query($link, "select * from non_exisiting_table");
- $error = mysqli_error($link);
-
- var_dump($error);
-
- mysqli_close($link);
-?>
---EXPECT--
-string(0) ""
-string(46) "Table 'test.non_exisiting_table' doesn't exist"