summaryrefslogtreecommitdiff
path: root/jstests/capped1.js
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2009-12-30 13:06:23 -0500
committerDwight <dmerriman@gmail.com>2009-12-30 13:06:23 -0500
commit9f20ce7c030d50c40e912f150e71b708c70a9ac1 (patch)
treea66b7b82c116e1afa9c7d5511874abf1931786d4 /jstests/capped1.js
parentb88f54e21973f639858148a6add41d43c9bbdffa (diff)
downloadmongo-9f20ce7c030d50c40e912f150e71b708c70a9ac1.tar.gz
SERVER-485 fix validate on capped collection
Diffstat (limited to 'jstests/capped1.js')
-rw-r--r--jstests/capped1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/capped1.js b/jstests/capped1.js
index 2e4fb866b9f..0bbeaa40894 100644
--- a/jstests/capped1.js
+++ b/jstests/capped1.js
@@ -4,7 +4,7 @@ t.drop();
db.createCollection("capped1" , {capped:true, size:1024 });
v = t.validate();
-//assert( v.valid , "A : " + tojson( v ) ); // SERVER-485
+assert( v.valid , "A : " + tojson( v ) ); // SERVER-485
t.save( { x : 1 } )
assert( t.validate().valid , "B" )