Fix yield-from test indentation

Indentation was inconsistent with our usual indentation style.
This commit is contained in:
Christopher Allan Webber 2014-11-20 20:39:31 -06:00
parent 602f392fe7
commit 86d8f69ef7

View File

@ -234,11 +234,11 @@
(assert (= tda-main tda-a1 tda-a2)))
(defn test-yield-from []
"NATIVE: testing yield from"
"NATIVE: testing yield from"
(defn yield-from-test []
(for* [i (range 3)]
(yield i))
(yield-from [1 2 3]))
(yield i))
(yield-from [1 2 3]))
(assert (= (list (yield-from-test)) [0 1 2 1 2 3])))
(defn test-botsbuildbots []