Skip to content

Commit 0817485

Browse files
tomfaulhaberstuarthalloway
authored andcommitted
Fixed a race in the pprint agent test
Signed-off-by: Stuart Halloway <[email protected]>
1 parent ef0cc87 commit 0817485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/clojure/test_clojure/pprint/test_pretty.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ Usage: *hello*
214214
[]
215215
(let [a (agent "foo")]
216216
(send a +)
217-
(try (await-for 100 failed-agent) (catch RuntimeException re))
217+
(try (await-for 100 a) (catch RuntimeException re))
218218
a))
219219
(def basic-atom (atom '(first second third)))
220220
(def basic-ref (ref '(first second third)))

0 commit comments

Comments
 (0)