Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Jan 29, 2024
1 parent 2c9841f commit afba4fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/integration/docker/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def sanitize_test_name(test_name: str):


def container(request, base_name: str, image: Union[Image, str], start: bool = True, **kwargs) -> Container:
"""
Create a Docker container based on the specified Docker image.
"""
"""
Create a Docker container based on the specified Docker image.
"""
client = docker.from_env()
base_container_name = base_name.replace("-", "_")
test_name = sanitize_test_name(str(request.node.name))
Expand Down
2 changes: 1 addition & 1 deletion test/integration/docker/exec_run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Optional, Tuple, Callable, Union, Iterator, cast, Dict, Mapping
from typing import Optional, Tuple, Callable, Union, Iterator, cast, Mapping

from docker.models.containers import Container

Expand Down

0 comments on commit afba4fc

Please sign in to comment.