Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/zend_test/tests/zend_mm_custom_handlers_alloc_01.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ zend_test
--FILE--
<?php
ini_set('zend_test.zend_mm_custom_handlers.enabled', 1);
$string = str_repeat('String', rand(1,100));
$string = str_repeat('String', rand(2,100));
ini_set('zend_test.zend_mm_custom_handlers.enabled', 0);
?>
--EXPECTREGEX--
Expand Down
2 changes: 1 addition & 1 deletion ext/zend_test/tests/zend_mm_custom_handlers_free_01.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ZendMM Custom Handlers: garbage collection
zend_test
--FILE--
<?php
$string = str_repeat('String', rand(1,100));
$string = str_repeat('String', rand(2,100));
ini_set('zend_test.zend_mm_custom_handlers.enabled', 1);
unset($string);
ini_set('zend_test.zend_mm_custom_handlers.enabled', 0);
Expand Down
Loading