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