Skip to content

Commit

Permalink
fix: remove f from err msg string
Browse files Browse the repository at this point in the history
solves lint fail
  • Loading branch information
ArthurBook authored Aug 14, 2024
1 parent 82cf95d commit 326fb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/testcontainers/core/waiting_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ def wait_for_logs(
if duration > timeout:
raise TimeoutError(f"Container did not emit logs satisfying predicate in {timeout:.3f} " "seconds")
if raise_on_exit and container.get_wrapped_container().status != 'running':
raise RuntimeError(f"Container exited before emitting logs satisfying predicate")
raise RuntimeError("Container exited before emitting logs satisfying predicate")

Check warning on line 122 in core/testcontainers/core/waiting_utils.py

View check run for this annotation

Codecov / codecov/patch

core/testcontainers/core/waiting_utils.py#L122

Added line #L122 was not covered by tests
time.sleep(interval)

0 comments on commit 326fb75

Please sign in to comment.