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.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/mysqli/tests/055.phpt b/ext/mysqli/tests/055.phpt
deleted file mode 100644
index e650dbcecd..0000000000
--- a/ext/mysqli/tests/055.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-free nothing
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
- include "connect.inc";
-
- /************************
- * don't free anything
- ************************/
- $link = mysqli_connect($host, $user, $passwd);
-
- $result2 = mysqli_query($link, "SELECT CURRENT_USER()");
- $stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()");
- printf("Ok\n");
-?>
---EXPECT--
-Ok