From a68a75f6d6f5ca82b184d901c4e6d2fbb2232013 Mon Sep 17 00:00:00 2001 From: Ben White Date: Fri, 20 Dec 2024 14:10:07 +0100 Subject: [PATCH] Fix --- posthog/api/test/test_hog_function_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/api/test/test_hog_function_templates.py b/posthog/api/test/test_hog_function_templates.py index eeaec1beaf945..4a34e36f88235 100644 --- a/posthog/api/test/test_hog_function_templates.py +++ b/posthog/api/test/test_hog_function_templates.py @@ -68,7 +68,7 @@ def test_filter_function_templates(self): def test_filter_sub_templates(self): response1 = self.client.get( - "/api/projects/@current/hog_function_templates/?type=internal_destination&sub_template_id=activity_log" + "/api/projects/@current/hog_function_templates/?type=internal_destination&sub_template_id=activity-log" ) assert response1.status_code == status.HTTP_200_OK, response1.json() assert len(response1.json()["results"]) > 0