summaryrefslogtreecommitdiff
path: root/jstests/error5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/error5.js')
-rw-r--r--jstests/error5.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/jstests/error5.js b/jstests/error5.js
deleted file mode 100644
index 5884d20d8c1..00000000000
--- a/jstests/error5.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-t = db.error5
-t.drop();
-
-assert.throws( function(){ t.save( 4 ); printjson( t.findOne() ) } , null , "A" );
-t.save( { a : 1 } )
-assert.eq( 1 , t.count() , "B" );
-