You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to #1115, PHPT tests can fail if the line endings of the EXPECT/EXPECTF section don't match the line endings in the test output. The behavior is also inconsistent with run-tests.php and PEAR_RunTest.
In run-tests.php, the all output is run through preg_replace("/\r\n/", "\n", trim($out));
The expected output is processed the same way, for both EXPECT and EXPECTF sections.
The text was updated successfully, but these errors were encountered:
vclayton
pushed a commit
to vclayton/phpunit
that referenced
this issue
Sep 26, 2014
Similar to #1115, PHPT tests can fail if the line endings of the EXPECT/EXPECTF section don't match the line endings in the test output. The behavior is also inconsistent with run-tests.php and PEAR_RunTest.
In run-tests.php, the all output is run through
preg_replace("/\r\n/", "\n", trim($out));
The expected output is processed the same way, for both EXPECT and EXPECTF sections.
The text was updated successfully, but these errors were encountered: