tests: replace legacy Brazil/East timezone in fixture (#89097)

Replacing Brazil/East (legacy, not present in defaults zoneinfo anymore)
with America/Sao_Paulo
This commit is contained in:
Yann Weber 2024-04-04 14:31:10 +02:00
parent b0f956c223
commit d03e1e7940
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ def admin_user():
return user
@pytest.fixture(params=['Europe/Brussels', 'Asia/Kolkata', 'Brazil/East'])
@pytest.fixture(params=['Europe/Brussels', 'Asia/Kolkata', 'America/Sao_Paulo'])
def time_zone(request, settings):
settings.TIME_ZONE = request.param