Fix yield-from test indentation
Indentation was inconsistent with our usual indentation style.
This commit is contained in:
parent
602f392fe7
commit
86d8f69ef7
@ -234,11 +234,11 @@
|
|||||||
(assert (= tda-main tda-a1 tda-a2)))
|
(assert (= tda-main tda-a1 tda-a2)))
|
||||||
|
|
||||||
(defn test-yield-from []
|
(defn test-yield-from []
|
||||||
"NATIVE: testing yield from"
|
"NATIVE: testing yield from"
|
||||||
(defn yield-from-test []
|
(defn yield-from-test []
|
||||||
(for* [i (range 3)]
|
(for* [i (range 3)]
|
||||||
(yield i))
|
(yield i))
|
||||||
(yield-from [1 2 3]))
|
(yield-from [1 2 3]))
|
||||||
(assert (= (list (yield-from-test)) [0 1 2 1 2 3])))
|
(assert (= (list (yield-from-test)) [0 1 2 1 2 3])))
|
||||||
|
|
||||||
(defn test-botsbuildbots []
|
(defn test-botsbuildbots []
|
||||||
|
Loading…
Reference in New Issue
Block a user