diff --git a/tests/commands/test_fetch_awards.py b/tests/commands/test_fetch_awards.py index ea5579d0..18211f3c 100644 --- a/tests/commands/test_fetch_awards.py +++ b/tests/commands/test_fetch_awards.py @@ -78,7 +78,7 @@ def compare_objects(instance, expected): case "size": assert value == models.BorrowerSize.NOT_INFORMED case "status": - assert value in (models.BorrowerStatus.ACTIVE, models.ApplicationStatus.PENDING) + assert value in {models.BorrowerStatus.ACTIVE, models.ApplicationStatus.PENDING} case _: assert value == expected[key], f"{instance.__class__.__name__}.{key}"