Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

A test compares a string with line separators in it against a literal string with newline characters in it, which works on systems with newlines as the line terminator, but not Windows. Using clojure.string/split-lines on the literal string and the function return value before comparing fixes it, as was done for an earlier failing Clojure test a few years ago.

2 Answers

0 votes
by

Comment made by: jafingerhut

Patch clj-2442-v1.patch fixes the failing test when building on Windows, and also passes on Mac OS X. It should work fine on Linux, too.

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-2442 (reported by jafingerhut)
...