pick-ui: fix enum value in test expectation

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34117>
This commit is contained in:
Eric Engestrom 2025-03-21 12:25:22 +01:00 committed by Marge Bot
parent 9d9e0c9c1b
commit 70665e2df7

View file

@ -50,7 +50,7 @@ class TestCommit:
'sha': 'abc123',
'description': 'sub: A commit',
'nominated': False,
'nomination_type': None,
'nomination_type': core.NominationType.NONE.value,
'resolution': core.Resolution.UNRESOLVED.value,
'main_sha': '45678',
'because_sha': None,
@ -381,7 +381,7 @@ class TestResolveNomination:
await core.resolve_nomination(c, '16.1')
assert not c.nominated
assert c.nomination_type is None
assert c.nomination_type is core.NominationType.NONE
@pytest.mark.asyncio
async def test_backport_is_nominated(self):
@ -403,7 +403,7 @@ class TestResolveNomination:
await core.resolve_nomination(c, '16.1')
assert not c.nominated
assert c.nomination_type is None
assert c.nomination_type is core.NominationType.NONE
@pytest.mark.asyncio
async def test_revert_is_nominated(self):