Skip to content

Commit d1a38e8

Browse files
committed
Fix variable resource ids in odbc test
Ids may vary when using persistent resources. We're not actually interested in the exact ids anyway.
1 parent 2f9f292 commit d1a38e8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ext/odbc/tests/odbc_close_all_001.phpt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ var_dump($result2);
2828

2929
?>
3030
--EXPECTF--
31-
resource(5) of type (odbc link)
32-
resource(7) of type (odbc link persistent)
33-
resource(8) of type (odbc result)
34-
resource(9) of type (odbc result)
35-
resource(5) of type (Unknown)
36-
resource(7) of type (Unknown)
37-
resource(8) of type (Unknown)
38-
resource(9) of type (Unknown)
31+
resource(%d) of type (odbc link)
32+
resource(%d) of type (odbc link persistent)
33+
resource(%d) of type (odbc result)
34+
resource(%d) of type (odbc result)
35+
resource(%d) of type (Unknown)
36+
resource(%d) of type (Unknown)
37+
resource(%d) of type (Unknown)
38+
resource(%d) of type (Unknown)

0 commit comments

Comments
 (0)