diff options
author | Andrey Hristov <andrey@php.net> | 2009-05-28 10:16:18 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-05-28 10:16:18 +0000 |
commit | 7d2383061c18e62133eae4bb4ffce81a7967b4b7 (patch) | |
tree | 9db545b3424a1a0e967435dfc7864f87a8666841 /ext/mysqli | |
parent | 5a19216596e0ed22965454a0ea3d16267e919365 (diff) | |
download | php-git-7d2383061c18e62133eae4bb4ffce81a7967b4b7.tar.gz |
Fix a test, UNSIGNED is expected
Diffstat (limited to 'ext/mysqli')
-rw-r--r-- | ext/mysqli/tests/mysqli_fetch_field_flags.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/tests/mysqli_fetch_field_flags.phpt b/ext/mysqli/tests/mysqli_fetch_field_flags.phpt index 9c74408c20..a39c6e3bc0 100644 --- a/ext/mysqli/tests/mysqli_fetch_field_flags.phpt +++ b/ext/mysqli/tests/mysqli_fetch_field_flags.phpt @@ -167,7 +167,7 @@ mysqli_close($link); $version = mysqli_get_server_version($link); if ($version <= 50105) { // TODO - check exact version! - $expected_flags = trim(str_replace('UNSIGNED', '', $expected_flags)); +// $expected_flags = trim(str_replace('UNSIGNED', '', $expected_flags)); } default: @@ -230,4 +230,4 @@ mysqli_close($link); print "done!"; ?> --EXPECTF-- -done!
\ No newline at end of file +done! |