Skip to content

Commit 324344f

Browse files
fix: Correct ruff format for assert statement
Co-Authored-By: unknown <>
1 parent 0e33418 commit 324344f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

unit_tests/sources/declarative/test_state_delegating_stream.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,6 @@ def test_cursor_age_validation_emits_warning_when_falling_back(caplog):
403403
get_records(source, _CONFIG, configured_catalog, state)
404404

405405
warning_messages = [r.message for r in caplog.records if r.levelno == logging.WARNING]
406-
assert any("TestStream" in msg and "older than" in msg and "P7D" in msg for msg in warning_messages), (
407-
f"Expected warning about stale cursor not found. Warnings: {warning_messages}"
408-
)
406+
assert any(
407+
"TestStream" in msg and "older than" in msg and "P7D" in msg for msg in warning_messages
408+
), f"Expected warning about stale cursor not found. Warnings: {warning_messages}"

0 commit comments

Comments
 (0)