summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-08-17 16:55:07 -0400
committerEliot Horowitz <eliot@10gen.com>2009-08-17 16:55:07 -0400
commit66d2680083801902cd1ca61f449e4f7a225b99d9 (patch)
tree13dae551b058d6e896bbd8fc349e152fad329622
parent92820c7cfbec83c5949e9b92d819e2c2180cda57 (diff)
parent1a700c121e2cf9080e4cbbd6f720da80915a5d40 (diff)
downloadmongo-66d2680083801902cd1ca61f449e4f7a225b99d9.tar.gz
Merge branch 'master' of git@github.com:mongodb/mongo
-rw-r--r--jstests/regex2.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/regex2.js b/jstests/regex2.js
index ebee19c82e1..9e69a5ab9d1 100644
--- a/jstests/regex2.js
+++ b/jstests/regex2.js
@@ -31,7 +31,7 @@ assert.eq( 1 , t.find( { a : a } ).count() , "C B" );
assert.eq( 1 , t.find( { a : b } ).count() , "C C" );
assert.eq( 1 , t.find( { a : new RegExp( a ) } ).count() , "C D" );
assert.eq( 1 , t.find( { a : new RegExp( b ) } ).count() , "C E" );
-assert.eq( 2 , t.find( { a : new RegExp( a , "i" ) } ).count() , "C F" );
+assert.eq( 2 , t.find( { a : new RegExp( a , "i" ) } ).count() , "C F is spidermonkey built with UTF-8 support?" );