summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Murphy <benjamin_murphy@me.com>2016-03-15 15:47:18 -0400
committerBenjamin Murphy <benjamin_murphy@me.com>2016-03-16 11:35:38 -0400
commit1cbd85144941ca7b837ae0a71e05a021022308e3 (patch)
treeb2c4ab6f94150b1396ab47aa307002cfe1bfaa6b
parent7b56e0bc7adf21de37592aaf5137523841541f1d (diff)
downloadmongo-1cbd85144941ca7b837ae0a71e05a021022308e3.tar.gz
SERVER-23160 error_propagation.js log message is incorrect.
-rw-r--r--jstests/sharding/error_propagation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/error_propagation.js b/jstests/sharding/error_propagation.js
index 27336b5efb5..bcf191c2d44 100644
--- a/jstests/sharding/error_propagation.js
+++ b/jstests/sharding/error_propagation.js
@@ -19,5 +19,5 @@
var res =
db.runCommand({aggregate: 'foo', pipeline: [{$project: {total: {'$add': ['$a', 1]}}}]});
assert.commandFailed(res);
- assert.eq("$add only supports numeric or date types, not Array", res.errmsg, printjson(res));
+ assert.eq("$add only supports numeric or date types, not array", res.errmsg, printjson(res));
}());