Skip to content
Snippets Groups Projects

Only show necessary timeframes on AK wall

Merged Benjamin Hättasch requested to merge 520-improve-wall into main
Files
12
+ 2
2
import pytz
import zoneinfo
from django.apps import apps
from django.test import TestCase, override_settings
from django.urls import reverse
@@ -22,7 +22,7 @@ class DashboardTests(TestCase):
cls.event = Event.objects.create(
name="Dashboard Test Event",
slug="dashboardtest",
timezone=pytz.utc,
timezone=zoneinfo.ZoneInfo("Europe/Berlin"),
start=now(),
end=now(),
active=True,
Loading