Skip to content

Commit 0555226

Browse files
author
felipe
committed
- Fix test
git-svn-id: http://svn.php.net/repository/php/php-src/trunk@312268 c90b9560-bf6c-de11-be94-00142212c4b1
1 parent 829746a commit 0555226

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Zend/tests/declare_003.phpt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
--TEST--
22
Testing declare statement with several type values
33
--INI--
4+
precision=15
45
zend.multibyte=1
56
--FILE--
67
<?php
78

89
declare(encoding = 1);
9-
declare(encoding = 1123131232131312321);
10+
declare(encoding = 11111111111111);
1011
declare(encoding = NULL);
1112
declare(encoding = M_PI);
1213

@@ -16,7 +17,7 @@ print 'DONE';
1617
--EXPECTF--
1718
Warning: Unsupported encoding [1] in %sdeclare_003.php on line %d
1819

19-
Warning: Unsupported encoding [1123131232131312321] in %sdeclare_003.php on line %d
20+
Warning: Unsupported encoding [11111111111111] in %sdeclare_003.php on line %d
2021

2122
Warning: Unsupported encoding [] in %sdeclare_003.php on line %d
2223

0 commit comments

Comments
 (0)