We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d42ad commit 87e7277Copy full SHA for 87e7277
packages/pytest-simcore/src/pytest_simcore/helpers/httpx_assert_checks.py
@@ -85,5 +85,5 @@ def _do_assert_error(
85
86
for msg in list_expected_msg:
87
assert any(
88
- re.search(msg, e) for e in details
+ msg == e or re.search(msg, e) for e in details
89
), f"could not find {msg=} in {details=}"
services/storage/tests/unit/test_utils_handlers.py
@@ -89,7 +89,7 @@ async def client(initialized_app: FastAPI) -> AsyncIterator[AsyncClient]:
statement="pytest statement",
90
params={},
91
orig=Exception("pytest original"),
92
- dbapi_base_err=Exception("pytest dbapi base error"),
+ dbapi_base_err=Exception,
93
),
94
status.HTTP_503_SERVICE_UNAVAILABLE,
95
0 commit comments