Skip to content

Commit ee13b44

Browse files
committed
chore: removed unuseful comments
Signed-off-by: Kanishk Pachauri <[email protected]>
1 parent 068e233 commit ee13b44

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

podman/tests/integration/test_container_create.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,10 @@ def test_container_environment_variables(self):
111111
)
112112
self.containers.append(container)
113113

114-
# Verify that the user-provided environment variables are in the container's configuration
115114
container_env = container.attrs.get('Config', {}).get('Env', [])
116115
for key, value in env_dict.items():
117116
self.assertIn(f"{key}={value}", container_env)
118117

119-
# Start the container and verify the environment variables are set
120118
container.start()
121119
container.wait()
122120
logs = b"\n".join(container.logs()).decode()
@@ -131,12 +129,10 @@ def test_container_environment_variables(self):
131129
)
132130
self.containers.append(container)
133131

134-
# Verify that the user-provided environment variables are in the container's configuration
135132
container_env = container.attrs.get('Config', {}).get('Env', [])
136133
for env in env_list:
137134
self.assertIn(env, container_env)
138135

139-
# Start the container and verify the environment variables are set
140136
container.start()
141137
container.wait()
142138
logs = b"\n".join(container.logs()).decode()

0 commit comments

Comments
 (0)