diff options
author | Eliot Horowitz <eliot@10gen.com> | 2012-12-22 01:16:31 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2012-12-22 01:16:31 -0500 |
commit | daff786610357651d2ff1747becd1327bdfdebc3 (patch) | |
tree | d49fc92dba61cc1d67226b4029602e0d999fccbe /jstests/evalb.js | |
parent | 161fdc6f34b52dbf00df6b971a63da502cf1ab4f (diff) | |
download | mongo-daff786610357651d2ff1747becd1327bdfdebc3.tar.gz |
fix test for new auth profiling name
Diffstat (limited to 'jstests/evalb.js')
-rw-r--r-- | jstests/evalb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/evalb.js b/jstests/evalb.js index aa56e972384..1e043619f4b 100644 --- a/jstests/evalb.js +++ b/jstests/evalb.js @@ -6,7 +6,7 @@ var stddb = db; var db = db.getSisterDB( 'evalb' ); function profileCursor() { - return db.system.profile.find( { user:username } ); + return db.system.profile.find( { user:username + "@" + db.getName() } ); } function lastOp() { |