summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2017-06-20 17:07:59 -0400
committerMathias Stearn <mathias@10gen.com>2017-06-28 11:57:04 -0400
commit227c848b6ab7055e56745705eb708af40bb73320 (patch)
tree41aea1604d61742f793f7738947fa9561257a4f5 /src
parente3fe73454a6e558fc61c19456510d5f93152721d (diff)
downloadmongo-227c848b6ab7055e56745705eb708af40bb73320.tar.gz
SERVER-18292 Re-enable tests tagged with SERVER-18292
Diffstat (limited to 'src')
-rw-r--r--src/mongo/rpc/legacy_request.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/rpc/legacy_request.cpp b/src/mongo/rpc/legacy_request.cpp
index 8247c7d3923..2c22b17edf2 100644
--- a/src/mongo/rpc/legacy_request.cpp
+++ b/src/mongo/rpc/legacy_request.cpp
@@ -48,7 +48,7 @@ OpMsgRequest opMsgRequestFromLegacyRequest(const Message& message) {
ns.isCommand());
uassert(16979,
- str::stream() << "bad numberToReturn (" << qm.ntoreturn
+ str::stream() << "Bad numberToReturn (" << qm.ntoreturn
<< ") for $cmd type ns - can only be 1 or -1",
qm.ntoreturn == 1 || qm.ntoreturn == -1);