From d72a0941d0a72b9b60b8ba6626db4d72fe2728cd Mon Sep 17 00:00:00 2001 From: Emily Stolfo Date: Wed, 26 Nov 2014 09:20:44 +0100 Subject: [PATCH] Update drop_collection test because of SERVER-16260 --- test/functional/db_test.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/functional/db_test.rb b/test/functional/db_test.rb index 5c3f13d734..048739b027 100644 --- a/test/functional/db_test.rb +++ b/test/functional/db_test.rb @@ -65,7 +65,8 @@ def test_get_and_drop_collection db.create_collection(:foo) assert db.collection(:foo) - assert db.drop_collection(:foo) + # Use a string because of SERVER-16260 + assert db.drop_collection('foo') end def test_logger