Skip to content

Commit c417813

Browse files
committed
Fixed out-of-scope variable
1 parent ccbbbeb commit c417813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def get_nginx_conf_from_container(container):
257257
strm, stat = container.get_archive('/etc/nginx/conf.d/default.conf')
258258
with tarfile.open(fileobj=StringIO(strm.read())) as tf:
259259
conffile = tf.extractfile('default.conf')
260-
return conffile.read()
260+
return conffile.read()
261261

262262

263263
def docker_compose_up(compose_file='docker-compose.yml'):

0 commit comments

Comments
 (0)