diff --git a/src/backend/apps/cms/models.py b/src/backend/apps/cms/models.py index 493df781c..3e7eba5e2 100644 --- a/src/backend/apps/cms/models.py +++ b/src/backend/apps/cms/models.py @@ -117,9 +117,7 @@ def save(self, *args, **kwargs): # Editor panels configuration content_panels = [ FieldPanel("title"), - # FieldPanel("url"), FieldPanel("image"), - # FieldPanel("location", widget=DriveBCMapWidget), FieldPanel("description"), FieldPanel("seasonal_description"), FieldPanel("service_hours"), diff --git a/src/backend/apps/cms/tests/test_advisory_api.py b/src/backend/apps/cms/tests/test_advisory_api.py index 715766070..3d67b2ec9 100644 --- a/src/backend/apps/cms/tests/test_advisory_api.py +++ b/src/backend/apps/cms/tests/test_advisory_api.py @@ -35,7 +35,7 @@ def setUp(self): def test_advisory_list_caching(self): # Empty cache - assert cache.get(CacheKey.EVENT_LIST) is None + assert cache.get(CacheKey.ADVISORY_LIST) is None # Cache miss url = "/api/cms/advisories/"