diff options
author | Sara Golemon <pollita@php.net> | 2013-04-22 13:36:40 -0700 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2013-04-22 13:36:40 -0700 |
commit | f63db963c48775e89e7d5f63235733098c2f653d (patch) | |
tree | b56b0f174b2c333061ac5716662333b396c5f9f6 | |
parent | 7b34324f846505a0af6bed83556b840b50a1ef30 (diff) | |
download | php-git-f63db963c48775e89e7d5f63235733098c2f653d.tar.gz |
Harden array_column_basic.phpt against resource renumbering.
We don't care what resource number it is, so long as there's a
stream resource returned.
-rw-r--r-- | ext/standard/tests/array/array_column_basic.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/array/array_column_basic.phpt b/ext/standard/tests/array/array_column_basic.phpt index 8c499107d9..eb267dad73 100644 --- a/ext/standard/tests/array/array_column_basic.phpt +++ b/ext/standard/tests/array/array_column_basic.phpt @@ -192,7 +192,7 @@ array(8) { [6]=> string(3) "Foo" [7]=> - resource(5) of type (stream) + resource(%d) of type (stream) } array(8) { [1]=> @@ -211,7 +211,7 @@ array(8) { [7]=> string(3) "Foo" [8]=> - resource(5) of type (stream) + resource(%d) of type (stream) } *** Testing numeric column keys *** |