Skip to content

Commit

Permalink
chore: removed unuseful comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Sunglasses committed Feb 17, 2025
1 parent e3dbf79 commit 77b00ba
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions podman/tests/integration/test_container_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 77b00ba

Please sign in to comment.