tests: fix testsuite for virtually accept

This commit is contained in:
Max Lin 2017-09-26 19:03:22 +08:00
parent 5611411a6f
commit 35679d10b3
2 changed files with 4 additions and 4 deletions

View File

@ -232,7 +232,7 @@ class TestApiCalls(unittest.TestCase):
self.assertEqual('new', self.obs.requests[rq]['review'])
self.assertEqual('review', self.obs.requests[rq]['request'])
self.assertEqual(self.api.get_prj_pseudometa('openSUSE:Factory:Staging:A'),
{'requests': [{'id': 123, 'package': 'gcc', 'author': 'Admin'}]})
{'requests': [{'id': 123, 'package': 'gcc', 'author': 'Admin', 'type': 'submit'}]})
def test_create_package_container(self):
"""Test if the uploaded _meta is correct."""

View File

@ -228,8 +228,8 @@ class OBS(object):
'C': {
'project': 'openSUSE:Factory:Staging:C',
'title': 'A project ready to be accepted',
'description': ('requests:\n- {id: 501, package: apparmor, author: Admin}\n'
'- {id: 502, package: mariadb, author: Admin}'),
'description': ('requests:\n- {id: 501, package: apparmor, author: Admin, type: submit}\n'
'- {id: 502, package: mariadb, author: Admin, type: submit}'),
},
'J': {
'project': 'openSUSE:Factory:Staging:J',
@ -588,7 +588,7 @@ class OBS(object):
meta = self.meta[key]
# Simulate missing _meta revision missing puppet request.
meta = meta.replace('- {author: Admin, id: 321, package: puppet}', '')
meta = meta.replace('- {author: Admin, id: 321, package: puppet, type: submit}', '')
response = (200, headers, meta)
except Exception as e:
if DEBUG: