mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
Fix typos
Software version used https://github.com/crate-ci/typos/releases/tag/v1.13.10 The binary was downloaded from https://github.com/crate-ci/typos/releases/download/v1.13.10/typos-v1.13.10-x86_64-unknown-linux-musl.tar.gz Command that was run: typos --write-changes docs cmd cni contrib dependencies docs hack libpod pkg utils False positives were manually removed. A few marshaling/existant typos were manually fixed. Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
This commit is contained in:
@ -220,7 +220,7 @@ class TestContainers(common.DockerTestCase):
|
||||
_, out = ctr.exec_run(["stat", "-c", "%u:%g", "/workspace"])
|
||||
self.assertEqual(out.rstrip(), b"1042:1043", "UID/GID set in dockerfile")
|
||||
|
||||
def test_non_existant_workdir(self):
|
||||
def test_non_existent_workdir(self):
|
||||
dockerfile = (
|
||||
b"FROM quay.io/libpod/alpine:latest\n"
|
||||
b"USER root\n"
|
||||
@ -233,7 +233,7 @@ class TestContainers(common.DockerTestCase):
|
||||
image=img.id,
|
||||
detach=True,
|
||||
command="top",
|
||||
volumes=["test_non_existant_workdir:/workspace"],
|
||||
volumes=["test_non_existent_workdir:/workspace"],
|
||||
)
|
||||
ctr.start()
|
||||
ret, _ = ctr.exec_run(["stat", "/workspace/scratch/test"])
|
||||
|
Reference in New Issue
Block a user