diff options
author | Andrey Hristov <andrey@php.net> | 2008-02-19 17:21:50 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-02-19 17:21:50 +0000 |
commit | 4ade01852c9e7ddc9c42a391d54ceff079ea1a87 (patch) | |
tree | 4d8518c0e65c2537ad1ded12434a7328fb25835e /ext/mysqli | |
parent | caee59b856e915c14a37924349c93112a6534b51 (diff) | |
download | php-git-4ade01852c9e7ddc9c42a391d54ceff079ea1a87.tar.gz |
Fix a failing test
Diffstat (limited to 'ext/mysqli')
-rw-r--r-- | ext/mysqli/tests/bug34810.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug34810.phpt b/ext/mysqli/tests/bug34810.phpt index 3bc959aab8..8af0790e49 100644 --- a/ext/mysqli/tests/bug34810.phpt +++ b/ext/mysqli/tests/bug34810.phpt @@ -23,7 +23,7 @@ class DbConnection { $mysql->query("CREATE TABLE test_warnings (a int not null)"); $mysql->query("SET sql_mode=''"); $mysql->query("INSERT INTO test_warnings VALUES (1),(2),(NULL)"); - var_dump(mysqli_warning::__construct($mysql)); + var_dump(new mysqli_warning($mysql)); } } |