Skip to content
Snippets Groups Projects
Commit fd076b29 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Update from swh-storage api

parent 1b5b3fc6
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ def from_release(release):
"""
return from_swh(release,
hashess=set(['id', 'revision']),
bytess=set(['comment']))
bytess=set(['comment', 'author_name', 'author_email']))
def from_revision(revision):
......
......@@ -309,7 +309,8 @@ class ApiTestCase(unittest.TestCase):
stub_release = {
'id': 'release-0',
'revision': 'revision-sha1',
'author': 'author-id',
'author_name': 'author release name',
'author_email': 'author@email',
}
mock_service.lookup_release.return_value = stub_release
......
......@@ -112,6 +112,8 @@ class ConvertersTestCase(unittest.TestCase):
'name': 'v0.1.1',
'comment': b'comment on release',
'synthetic': False,
'author_name': b'bob',
'author_email': b'bob@alice.net',
}
expected_release = {
......@@ -123,6 +125,8 @@ class ConvertersTestCase(unittest.TestCase):
'name': 'v0.1.1',
'comment': 'comment on release',
'synthetic': False,
'author_name': 'bob',
'author_email': 'bob@alice.net',
}
# when
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment