User data is returned when there are more than 1 credential.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2022-10-03 10:44:57 +02:00
parent b87eb3f278
commit d786a9c6e5

View File

@@ -140,7 +140,8 @@ def test_rk_maximum_size_nodisplay(device):
user_max_GA = auths[0]
print(auths)
for y in ("name", "displayName", "id"):
assert user_max_GA.user[y] == user_max[y]
if (y in user_max_GA):
assert user_max_GA.user[y] == user_max[y]
def test_rk_maximum_list_capacity_per_rp_nodisplay(info, device, MCRes_DC):