mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
bin/rb: update Alyssa's email address in test case
Also assert that a is not None to stop pyright from complaining. Signed-off-by: Job Noorman <jnoorman@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37119>
This commit is contained in:
parent
1084fc6f4c
commit
082f4b79ae
1 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ TEST_CASES = {
|
||||||
'gfxstrand': 'faith.ekstrand@collabora.com',
|
'gfxstrand': 'faith.ekstrand@collabora.com',
|
||||||
'Faith': 'faith.ekstrand@collabora.com',
|
'Faith': 'faith.ekstrand@collabora.com',
|
||||||
'faith': 'faith.ekstrand@collabora.com',
|
'faith': 'faith.ekstrand@collabora.com',
|
||||||
'alyssa': 'alyssa@rosenzweig.io',
|
'alyssa': 'alyssa.rosenzweig@intel.com',
|
||||||
'briano': 'ivan.briano@intel.com',
|
'briano': 'ivan.briano@intel.com',
|
||||||
'schurmann': 'daniel@schuermann.dev',
|
'schurmann': 'daniel@schuermann.dev',
|
||||||
'Schürmann': 'daniel@schuermann.dev',
|
'Schürmann': 'daniel@schuermann.dev',
|
||||||
|
|
@ -67,7 +67,7 @@ for test in TEST_CASES:
|
||||||
a, b = find_person(test), TEST_CASES[test]
|
a, b = find_person(test), TEST_CASES[test]
|
||||||
if a is None or a[1] != b:
|
if a is None or a[1] != b:
|
||||||
print(test, a, b)
|
print(test, a, b)
|
||||||
assert(a[1] == b)
|
assert(a is not None and a[1] == b)
|
||||||
|
|
||||||
# Now the tool itself
|
# Now the tool itself
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue