Projet

Général

Profil

0001-tests-adapt-auth_fc-tests-to-new-scope-39231.patch

Serghei Mihai (congés, retour 15/05), 24 janvier 2020 13:40

Télécharger (934 octets)

Voir les différences:

Subject: [PATCH] tests: adapt auth_fc tests to new scope (#39231)

 tests/auth_fc/test_auth_fc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
tests/auth_fc/test_auth_fc.py
78 78
    assert 'client_id' in parsed
79 79
    assert parsed['client_id'] == 'xxx'
80 80
    assert 'scope' in parsed
81
    assert set(parsed['scope'].split()) == set(['openid', 'profile', 'birth', 'email'])
81
    assert set(parsed['scope'].split()) == set(['openid', 'profile', 'email'])
82 82
    assert 'state' in parsed
83 83
    assert 'nonce' in parsed
84 84
    assert parsed['state'] == parsed['nonce']
85
-