diff options
author | Tom Faulhaber <git_net@infolace.com> | 2010-08-09 12:05:47 -0700 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2010-09-22 17:21:50 -0400 |
commit | afe971a76050fb6d3406394728a66a558849fd12 (patch) | |
tree | 9a7280bb94d153f4c5c2791f18914d6519773306 | |
parent | 0436abdb51ae6d53517b74bf84a33162397744b0 (diff) |
Fixed a race in the pprint agent test
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-rw-r--r-- | test/clojure/test_clojure/pprint/test_pretty.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/clojure/test_clojure/pprint/test_pretty.clj b/test/clojure/test_clojure/pprint/test_pretty.clj index a012b1d4..93edab79 100644 --- a/test/clojure/test_clojure/pprint/test_pretty.clj +++ b/test/clojure/test_clojure/pprint/test_pretty.clj @@ -214,7 +214,7 @@ Usage: *hello* [] (let [a (agent "foo")] (send a +) - (try (await-for 100 failed-agent) (catch RuntimeException re)) + (try (await-for 100 a) (catch RuntimeException re)) a)) (def basic-atom (atom '(first second third))) (def basic-ref (ref '(first second third))) |