From 65b4378bf6ef4d4cd9229725d541d5ec4ed0a496 Mon Sep 17 00:00:00 2001 From: Garrett Ladley <92384606+garrettladley@users.noreply.github.com> Date: Mon, 15 Apr 2024 17:29:26 -0400 Subject: [PATCH] parity: all content model fields are s3_urls (#550) --- backend/tests/api/club_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/tests/api/club_test.go b/backend/tests/api/club_test.go index e3b74f06b..d6ef0dcd6 100644 --- a/backend/tests/api/club_test.go +++ b/backend/tests/api/club_test.go @@ -253,7 +253,7 @@ func TestCreateClubFailsOnInvalidDescription(t *testing.T) { []interface{}{ "Not an URL", "@#139081#$Ad_Axf", - // "https://google.com", <-- TODO fix once we handle mongo urls + "https://google.com", }, ) } @@ -298,7 +298,7 @@ func TestCreateClubFailsOnInvalidLogo(t *testing.T) { []interface{}{ "Not an URL", "@#139081#$Ad_Axf", - // "https://google.com", <-- TODO uncomment once we figure out s3 url validation + "https://google.com", }, ) }