aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/test_contrib/test_graph.clj
diff options
context:
space:
mode:
authorJeffrey Straszheim <straszheimjeffrey@gmail.com>2009-02-24 00:58:32 +0000
committerJeffrey Straszheim <straszheimjeffrey@gmail.com>2009-02-24 00:58:32 +0000
commit432372af9773809955e4ce5fcfa2d140bcbbe1d7 (patch)
treea4744739dc17519b2dc17099b2672756629f6333 /src/clojure/contrib/test_contrib/test_graph.clj
parentf39ba0971524b94189b3bcf007170d5a7e9e6643 (diff)
Began graph module
Diffstat (limited to 'src/clojure/contrib/test_contrib/test_graph.clj')
-rw-r--r--src/clojure/contrib/test_contrib/test_graph.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/test_contrib/test_graph.clj b/src/clojure/contrib/test_contrib/test_graph.clj
index 7a92a734..093462b8 100644
--- a/src/clojure/contrib/test_contrib/test_graph.clj
+++ b/src/clojure/contrib/test_contrib/test_graph.clj
@@ -60,7 +60,7 @@
(deftest test-scc
- (is (= (map set (scc test-graph-2))
+ (is (= (scc test-graph-2)
[#{8 9} #{7} #{6} #{5} #{0 1 2 3 4}]))
(is (empty? (scc empty-graph))))