Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
laruence committed Dec 24, 2019
1 parent 431bf20 commit b5a4c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/issue061.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var_dump(substr('abc', 0, 2));
var_dump(trim('abc', 'c'));
var_dump(rtrim('abc', 'c'));
var_dump(ltrim('abc', 'c'));
var_dump(implode(array('a', 'c'), 'b'));
var_dump(implode('b', array('a', 'c')));
?>
--EXPECT--
string(2) "ab"
Expand Down

0 comments on commit b5a4c7a

Please sign in to comment.