summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/034.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/034.phpt')
-rw-r--r--ext/mysqli/tests/034.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/mysqli/tests/034.phpt b/ext/mysqli/tests/034.phpt
deleted file mode 100644
index e347586a36..0000000000
--- a/ext/mysqli/tests/034.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-function test: mysqli_get_proto_info
---FILE--
-<?php
- $user = "root";
- $passwd = "";
-
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $pinfo = mysqli_get_proto_info($link);
-
- var_dump($pinfo);
-
- mysqli_close($link);
-?>
---EXPECT--
-int(10)