We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9003c7d commit d24b516Copy full SHA for d24b516
1 file changed
test/lambdaisland/deep_diff2/printer_test.cljc
@@ -26,10 +26,11 @@
26
27
(deftest print-doc-test
28
(testing "date"
29
- (let [expected (str/replace "\u001B[31m-#inst \"2019-04-09T14:57:46.128-00:00\"\u001B[0m \u001B[32m+#inst \"2019-04-10T14:57:46.128-00:00\"\u001B[0m\n" "\r\n" "\n")]
+ (let [expected "\u001B[31m-#inst \"2019-04-09T14:57:46.128-00:00\"\u001B[0m \u001B[32m+#inst \"2019-04-10T14:57:46.128-00:00\"\u001B[0m\n"]
30
(is (= expected
31
- (printed (diff/diff #inst "2019-04-09T14:57:46.128-00:00"
32
- #inst "2019-04-10T14:57:46.128-00:00"))))))
+ (str/replace (printed (diff/diff #inst "2019-04-09T14:57:46.128-00:00"
+ #inst "2019-04-10T14:57:46.128-00:00"))
33
+ "\r\n" "\n")))))
34
35
#?(:bb nil ;; bb TimeStamp constructor not included as of 1.0.166
36
:clj
0 commit comments