Skip to content

Commit

Permalink
remove tmppath
Browse files Browse the repository at this point in the history
Signed-off-by: mgorsk1 <[email protected]>
  • Loading branch information
mgorsk1 committed Aug 13, 2024
1 parent fc40016 commit 6f25274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_docker_image_with_custom_dockerfile_path(dockerfile_path: Optional[Path
assert container.get_logs() == (("Hello world!\n").encode(), b""), "Container logs mismatch"


def test_docker_start_with_copy_file_to_container_from_binary_transferable(tmp_path: Path) -> None:
def test_docker_start_with_copy_file_to_container_from_binary_transferable() -> None:
container = DockerContainer("nginx")
data = "test_docker_start_with_copy_file_to_container_from_binary_transferable"

Expand All @@ -108,7 +108,7 @@ def test_docker_start_with_copy_file_to_container_from_binary_transferable(tmp_p
assert stdout.decode() == data


def test_docker_start_with_copy_file_to_container_from_file_transferable(tmp_path: Path) -> None:
def test_docker_start_with_copy_file_to_container_from_file_transferable() -> None:
container = DockerContainer("nginx")
data = "test_docker_start_with_copy_file_to_container_from_file_transferable"

Expand Down

0 comments on commit 6f25274

Please sign in to comment.