Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Remove redundant collection drop
Browse files Browse the repository at this point in the history
The database is dropped two lines earlier.
  • Loading branch information
robyoung committed Oct 3, 2013
1 parent e495b0a commit b084f4a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/core/integration/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def setUp(self):
self.db = Database(HOST, PORT, DB_NAME)
self.db._mongo.drop_database(DB_NAME)
self.mongo_collection = self.db.get_collection(BUCKET)
self.mongo_collection._collection.drop()
self.repository = BucketConfigRepository(self.db)

def test_saving_a_config_with_default_values(self):
Expand Down

0 comments on commit b084f4a

Please sign in to comment.