diff options
Diffstat (limited to 'src/clojure/contrib/test_contrib/test_graph.clj')
-rw-r--r-- | src/clojure/contrib/test_contrib/test_graph.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/test_contrib/test_graph.clj b/src/clojure/contrib/test_contrib/test_graph.clj index 09b3cc93..425966bf 100644 --- a/src/clojure/contrib/test_contrib/test_graph.clj +++ b/src/clojure/contrib/test_contrib/test_graph.clj @@ -79,9 +79,9 @@ (is (every? #(= #{:a :b :c :d :e} (set %)) (map (partial get-neighbors tc-1) (:nodes tc-1)))) (is (= (get :a) #{:a :b :c :d :e})) - (is (= (get :h) #{:h})) + (is (= (get :h) #{})) (is (= (get :j) #{:i :j})) - (is (= (get :g) #{:a :b :c :d :e :f :g})))) + (is (= (get :g) #{:a :b :c :d :e :f})))) (deftest test-post-ordered-nodes |