We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 312f8c3 commit ff8a591Copy full SHA for ff8a591
1 file changed
tools/driver_tests.py
@@ -87,11 +87,11 @@ def dbs(db, out):
87
db.dbs_1.save({"foo": "bar"})
88
db.dbs_2.save({"psi": "phi"})
89
print >>out, db.name()
90
- for name in sorted(db.collection_names()):
+ for name in [n for n in sorted(db.collection_names()) if n.startswith("dbs")]:
91
print >>out, name
92
db.drop_collection(db.dbs_1)
93
db.create_collection("dbs_3")
94
95
96
97
def main(test, out_file):
0 commit comments