mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
Fix variable resource ids in odbc test
Ids may vary when using persistent resources. We're not actually interested in the exact ids anyway.
This commit is contained in:
parent
2f9f2928ce
commit
d1a38e8b8e
1 changed files with 8 additions and 8 deletions
|
@ -28,11 +28,11 @@ var_dump($result2);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
resource(5) of type (odbc link)
|
resource(%d) of type (odbc link)
|
||||||
resource(7) of type (odbc link persistent)
|
resource(%d) of type (odbc link persistent)
|
||||||
resource(8) of type (odbc result)
|
resource(%d) of type (odbc result)
|
||||||
resource(9) of type (odbc result)
|
resource(%d) of type (odbc result)
|
||||||
resource(5) of type (Unknown)
|
resource(%d) of type (Unknown)
|
||||||
resource(7) of type (Unknown)
|
resource(%d) of type (Unknown)
|
||||||
resource(8) of type (Unknown)
|
resource(%d) of type (Unknown)
|
||||||
resource(9) of type (Unknown)
|
resource(%d) of type (Unknown)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue