summaryrefslogtreecommitdiff
path: root/jstests/core/map1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/map1.js')
-rw-r--r--jstests/core/map1.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/map1.js b/jstests/core/map1.js
index 1db53cd3848..5697e41f32c 100644
--- a/jstests/core/map1.js
+++ b/jstests/core/map1.js
@@ -14,11 +14,11 @@ function basic1( key , lookup , shouldFail){
}
-basic1( 6 )
-basic1( new Date() )
-basic1( "eliot" )
+basic1( 6 );
+basic1( new Date() );
+basic1( "eliot" );
basic1( { a : 1 } );
-basic1( { a : 1 , b : 1 } )
-basic1( { a : 1 } , { b : 1 } , true )
-basic1( { a : 1 , b : 1 } , { b : 1 , a : 1 } , true )
+basic1( { a : 1 , b : 1 } );
+basic1( { a : 1 } , { b : 1 } , true );
+basic1( { a : 1 , b : 1 } , { b : 1 , a : 1 } , true );
basic1( { a : 1 } , { a : 2 } , true );