Fix failing readline() basic test

Test for readline() basic doesn't seem to capture the STDIN in the
output for some systems such as macOS and Windows.
This commit is contained in:
Peter Kokot 2019-02-09 12:18:13 +01:00
parent 31b2dcb26c
commit 4ae5691a60

View File

@ -14,5 +14,4 @@ var_dump(readline('Enter some text:'));
--STDIN--
I love PHP
--EXPECTF--
Enter some text:I love PHP
string(10) "I love PHP"
%Astring(10) "I love PHP"