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:18:39 -0400 |
commit | 08174853d9b2a141b77de2a9b54e6cd2cded7c8a (patch) | |
tree | 1d24c74f28797ae4f08430d9a7c539290f0e8e9b | |
parent | ef0cc8786ca02a34abd14b04e5324aeb106b4c8a (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))) |