diff options
-rw-r--r-- | jstests/regex2.js | 2 |
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?" ); |