We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0027b commit 99449a7Copy full SHA for 99449a7
1 file changed
src/test/clojure/clojure/tools/build/tasks/test_uber.clj
@@ -192,12 +192,12 @@
192
(slurp (project-path "target/unzip/overwrite.txt"))))
193
194
;; append files append
195
- (is (= (str (slurp (project-path "j1/append.txt")) "\n"
+ (is (= (str (slurp (project-path "j1/append.txt")) (System/lineSeparator)
196
(slurp (project-path "j2/append.txt")))
197
(slurp (project-path "target/unzip/append.txt"))))
198
199
;; LICENSE files append but no dupes - include j1 and j2, but not j3 (dupe of j1)
200
- (is (= (str (slurp (project-path "j1/META-INF/LICENSE.txt")) "\n"
+ (is (= (str (slurp (project-path "j1/META-INF/LICENSE.txt")) (System/lineSeparator)
201
(slurp (project-path "j2/META-INF/LICENSE.txt")))
202
(slurp (project-path "target/unzip/META-INF/LICENSE.txt"))))))
203
0 commit comments