aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/getpart.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/getpart.pm b/tests/getpart.pm
index 2b4abf3b1..92a237830 100644
--- a/tests/getpart.pm
+++ b/tests/getpart.pm
@@ -213,10 +213,9 @@ sub compareparts {
# we cannot compare arrays index per index since with the base64 chunks,
# they may not be "evenly" distributed
- if($^O eq "MSWin32" || $^O eq "msys") {
- $first =~ s/\r\n/\n/g;
- $second =~ s/\r\n/\n/g;
- }
+ # NOTE: this no longer strips off carriage returns from the arrays. Is that
+ # really necessary? It ruins the testing of newlines. I believe it was once
+ # added to enable tests on win32.
if($first ne $second) {
return 1;