@@ -185,7 +185,7 @@ def test_FeatureCodeReferencesDetailAPIView__responds_200_with_code_references_f
185185 with freezegun .freeze_time ("2099-01-01T10:00:00-0300" ):
186186 FeatureFlagCodeReferencesScan .objects .create (
187187 project = project ,
188- repository_url = "https://github.flagsmith.com/backend/ " ,
188+ repository_url = "https://github.flagsmith.com/backend" ,
189189 revision = "backend-1" ,
190190 code_references = [
191191 {
@@ -197,7 +197,7 @@ def test_FeatureCodeReferencesDetailAPIView__responds_200_with_code_references_f
197197 )
198198 FeatureFlagCodeReferencesScan .objects .create (
199199 project = project ,
200- repository_url = "https://github.flagsmith.com/frontend/ " ,
200+ repository_url = "https://github.flagsmith.com/frontend" ,
201201 revision = "frontend-1" ,
202202 code_references = [
203203 {
@@ -210,7 +210,7 @@ def test_FeatureCodeReferencesDetailAPIView__responds_200_with_code_references_f
210210 with freezegun .freeze_time ("2099-01-02T11:00:00-0300" ):
211211 FeatureFlagCodeReferencesScan .objects .create (
212212 project = project ,
213- repository_url = "https://github.flagsmith.com/frontend/ " ,
213+ repository_url = "https://github.flagsmith.com/frontend" ,
214214 revision = "frontend-2" ,
215215 code_references = [
216216 {
@@ -235,7 +235,7 @@ def test_FeatureCodeReferencesDetailAPIView__responds_200_with_code_references_f
235235 assert response .status_code == 200
236236 assert response .json () == [
237237 {
238- "repository_url" : "https://github.flagsmith.com/backend/ " ,
238+ "repository_url" : "https://github.flagsmith.com/backend" ,
239239 "vcs_provider" : "github" ,
240240 "revision" : "backend-1" ,
241241 "last_successful_repository_scanned_at" : "2099-01-01T13:00:00+00:00" ,
@@ -252,7 +252,7 @@ def test_FeatureCodeReferencesDetailAPIView__responds_200_with_code_references_f
252252 ],
253253 },
254254 {
255- "repository_url" : "https://github.flagsmith.com/frontend/ " ,
255+ "repository_url" : "https://github.flagsmith.com/frontend" ,
256256 "vcs_provider" : "github" ,
257257 "revision" : "frontend-2" ,
258258 "last_successful_repository_scanned_at" : "2099-01-02T14:00:00+00:00" ,
0 commit comments