Skip to content

Commit d72a094

Browse files
committed
Update drop_collection test because of SERVER-16260
1 parent d304967 commit d72a094

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional/db_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ def test_get_and_drop_collection
6565

6666
db.create_collection(:foo)
6767
assert db.collection(:foo)
68-
assert db.drop_collection(:foo)
68+
# Use a string because of SERVER-16260
69+
assert db.drop_collection('foo')
6970
end
7071

7172
def test_logger

0 commit comments

Comments
 (0)