Skip to content

Commit e20ea02

Browse files
authored
Undo fix for previous version of basilisp (#905)
1 parent 162f7de commit e20ea02

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test/clojure/core_test/concat.cljc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
(testing "arity 0"
88
;; returns an unrealized, empty lazy seq
99
(let [s (concat)]
10-
(is #?(:lpy (not (p/lazy-seq? s))
11-
:default (p/lazy-seq? s)))
12-
(is #?(:lpy true
13-
:default (not (realized? s))))
10+
(is (p/lazy-seq? s))
11+
(is (not (realized? s)))
1412
(is (empty? s))))
1513

1614
(testing "arity 1"

0 commit comments

Comments
 (0)