diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 20:08:43 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 20:08:43 -0700 |
commit | ab9fe881c0531b5dd4e2a648e65d4d04b991b807 (patch) | |
tree | cf55b247d26a0e475cd553c3cef2b101ce41b622 /python/tests/api_filesets.py | |
parent | 3ebea73882a35ea1e892899d959efaed0264ec66 (diff) | |
download | fatcat-ab9fe881c0531b5dd4e2a648e65d4d04b991b807.tar.gz fatcat-ab9fe881c0531b5dd4e2a648e65d4d04b991b807.zip |
hide abstracts and refs in release expansions
Diffstat (limited to 'python/tests/api_filesets.py')
-rw-r--r-- | python/tests/api_filesets.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/tests/api_filesets.py b/python/tests/api_filesets.py index 94aa575d..48f58cc8 100644 --- a/python/tests/api_filesets.py +++ b/python/tests/api_filesets.py @@ -82,6 +82,8 @@ def test_fileset_examples(api): assert fs3.manifest[1].md5 == 'f4de91152c7ab9fdc2a128f962faebff' assert fs3.manifest[1].extra['mimetype'] == 'application/gzip' assert fs3.releases[0].ident + assert fs3.releases[0].abstracts is None + assert fs3.releases[0].refs is None def test_bad_fileset(api): |