From 77b00ba8f03a8faff69ccb000e6ba41cbe637478 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Tue, 18 Feb 2025 00:12:00 +0530 Subject: [PATCH] chore: removed unuseful comments --- podman/tests/integration/test_container_create.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/podman/tests/integration/test_container_create.py b/podman/tests/integration/test_container_create.py index 62ed3063..a530b98d 100644 --- a/podman/tests/integration/test_container_create.py +++ b/podman/tests/integration/test_container_create.py @@ -111,12 +111,10 @@ def test_container_environment_variables(self): ) self.containers.append(container) - # Verify that the user-provided environment variables are in the container's configuration container_env = container.attrs.get('Config', {}).get('Env', []) for key, value in env_dict.items(): self.assertIn(f"{key}={value}", container_env) - # Start the container and verify the environment variables are set container.start() container.wait() logs = b"\n".join(container.logs()).decode() @@ -131,12 +129,10 @@ def test_container_environment_variables(self): ) self.containers.append(container) - # Verify that the user-provided environment variables are in the container's configuration container_env = container.attrs.get('Config', {}).get('Env', []) for env in env_list: self.assertIn(env, container_env) - # Start the container and verify the environment variables are set container.start() container.wait() logs = b"\n".join(container.logs()).decode()