From c970a60765fa659e76a39d4919e4fff1be566046 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Mon, 16 Apr 2012 00:38:26 +0400 Subject: [PATCH] Remove some assertions that do not really test anything in the client --- test/monger/test/indexing_test.clj | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/monger/test/indexing_test.clj b/test/monger/test/indexing_test.clj index 495968e..c405454 100644 --- a/test/monger/test/indexing_test.clj +++ b/test/monger/test/indexing_test.clj @@ -19,9 +19,6 @@ (deftest ^{:indexing true} test-creating-and-dropping-indexes (let [collection "libraries"] (mgcol/drop-indexes collection) - (is (= "_id_" - (:name (first (mgcol/indexes-on collection))))) - (is (nil? (second (mgcol/indexes-on collection)))) (mgcol/create-index collection { "language" 1 }) (is (= "language_1" (:name (second (mgcol/indexes-on collection)))))