diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 21:12:19 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 21:12:19 +0000 |
commit | 29f789e66f71f08434985df0c7622407f0b54102 (patch) | |
tree | b1075bd17c139ea892634488a1bfe1452447df88 | |
parent | de53d5ca550ce54bf72273bb05687b87b4817483 (diff) |
Adapt test to change introduced in revision 963725 - deleted documents can now have non-empty bodies.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@964201 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | test/etap/031-doc-to-json.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/etap/031-doc-to-json.t b/test/etap/031-doc-to-json.t index 05425d38..605a6d00 100755 --- a/test/etap/031-doc-to-json.t +++ b/test/etap/031-doc-to-json.t @@ -78,8 +78,8 @@ test_to_json_success() -> }, { #doc{deleted=true, body={[{<<"foo">>, <<"bar">>}]}}, - {[{<<"_id">>, <<>>}, {<<"_deleted">>, true}]}, - "Deleted docs drop body members." + {[{<<"_id">>, <<>>}, {<<"foo">>, <<"bar">>}, {<<"_deleted">>, true}]}, + "Deleted docs no longer drop body members." }, { #doc{meta=[ |