Skip to content

Commit f5f5348

Browse files
committed
Merge pull request #548 from estolfo/server-bug
Update drop_collection test because of SERVER-16260
2 parents d304967 + d72a094 commit f5f5348

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)