Skip to content

Commit 703d975

Browse files
committed
Add missing colon to error message.
1 parent 1be54d4 commit 703d975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/testcontainers/core/waiting_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def wrapper(wrapped: Callable, instance: Any, args: Iterable, kwargs: Mapping) -
6464
time.sleep(config.SLEEP_TIME)
6565
exception = e
6666
raise TimeoutError(
67-
f'Wait time ({config.TIMEOUT}s) exceeded for {wrapped.__name__}(args: {args}, kwargs '
67+
f'Wait time ({config.TIMEOUT}s) exceeded for {wrapped.__name__}(args: {args}, kwargs: '
6868
f'{kwargs}). Exception: {exception}'
6969
)
7070

0 commit comments

Comments
 (0)