Fix language. Mostly spelling a -> an

Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
This commit is contained in:
Erik Sjölund
2022-11-19 16:45:36 +01:00
parent cea9340242
commit a1b32866cc
22 changed files with 26 additions and 26 deletions

View File

@ -14,7 +14,7 @@ from test.python.docker.compat import constant
def run_top_container(client: DockerClient):
"""Run top command in a alpine container."""
"""Run top command in an alpine container."""
ctnr = client.containers.create(
constant.ALPINE,
command="top",

View File

@ -31,7 +31,7 @@ class TestContainers(common.DockerTestCase):
def test_start_container(self):
# Podman docs says it should give a 304 but returns with no response
# # Start a already started container should return 304
# # Start an already started container should return 304
# response = self.docker.api.start(container=self.top_container_id)
# self.assertEqual(error.exception.response.status_code, 304)