Skip to content

Commit 07e9cfe

Browse files
committed
Fixed test
1 parent 76ec692 commit 07e9cfe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Zend/tests/constants_005.phpt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
--TEST--
2-
Persistent case insensetive and user defined constants
2+
Persistent case insensitive and user defined constants
33
--FILE--
44
<?php
55
var_dump(ZEND_THREAD_safe);
66
define("ZEND_THREAD_safe", 123);
77
var_dump(ZEND_THREAD_safe);
88
?>
99
--EXPECTF--
10-
bool(%s)
10+
Notice: Use of undefined constant ZEND_THREAD_safe - assumed 'ZEND_THREAD_safe' in %s on line %d
11+
string(16) "ZEND_THREAD_safe"
1112
int(123)

0 commit comments

Comments
 (0)