summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/055.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/055.phpt')
-rw-r--r--ext/mysqli/tests/055.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/mysqli/tests/055.phpt b/ext/mysqli/tests/055.phpt
deleted file mode 100644
index e777bcfc99..0000000000
--- a/ext/mysqli/tests/055.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-free nothing
---FILE--
-<?php
- include "connect.inc";
-
- /************************
- * don't free anything
- ************************/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $result2 = mysqli_query($link, "SELECT CURRENT_USER()");
- $stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()");
- printf("Ok\n");
-?>
---EXPECT--
-Ok