Skip to content

Commit cdd9c2e

Browse files
omer9564danyi1212
andauthored
fix breaking changes in aioresponses 0.7.8 requiring host and port also (#238)
* fix breaking changes in aioresponses 0.7.8 requiring host and port also * Fixed pre-commit --------- Co-authored-by: Dan Yishai <[email protected]>
1 parent e27a27a commit cdd9c2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pdp_cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,4 @@ jobs:
211211
aws ecs update-service \
212212
--cluster public-pdps-us-east-1 \
213213
--service pdp-general-redoc-service-731a74c \
214-
--force-new-deployment
214+
--force-new-deployment

horizon/tests/test_local_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def test_list_role_assignments_factdb(tmp_path: Path) -> None:
132132
logger.info("mocking FactDB url: {}", factdb_url)
133133
# Test valid response from OPA
134134
m.get(
135-
factdb_url,
135+
f"{sidecar_config.FACTDB_SERVICE_URL}{factdb_url}",
136136
status=200,
137137
repeat=True,
138138
payload=[

0 commit comments

Comments
 (0)