summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRichard Kreuter <richard@10gen.com>2010-07-08 14:20:58 -0400
committerRichard Kreuter <richard@10gen.com>2010-07-08 14:20:58 -0400
commit3e2f49e0048f234540fd18bc2301dba7247f2b5f (patch)
treee1c2df206053498cccd3c18d0f9c4d315b1d0e24 /buildscripts
parent5f9b5ff8d4b627b4d9d630d50dd2d06f76b54a02 (diff)
downloadmongo-3e2f49e0048f234540fd18bc2301dba7247f2b5f.tar.gz
Fix an error message in smoke.py
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index d5ff0c43808..f8598f36872 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -288,14 +288,14 @@ def report():
def missing(lst, src, dst):
if lst:
- print """The following databases were present in the %s but not the %s
+ print """The following collections were present in the %s but not the %s
at the end of testing:""" % (src, dst)
for db in lst:
print db
missing(lost_in_slave, "master", "slave")
missing(lost_in_master, "slave", "master")
if screwy_in_slave:
- print """The following databases has different hashes in master and slave
+ print """The following collections has different hashes in master and slave
at the end of testing:"""
for db in screwy_in_slave.keys():
print "%s\t %s" % (db, screwy_in_slave[db])