test: fix wrong indentation
Fix a wrong intendation in TestBase. We used 8spaces instead of 4 in a subprocess.run() call.
This commit is contained in:
parent
086ad75ba4
commit
b659aa72ed
1 changed files with 5 additions and 5 deletions
10
test/test.py
10
test/test.py
|
|
@ -257,11 +257,11 @@ class OSBuild(contextlib.AbstractContextManager):
|
|||
# trees (they would trigger `EBUSY` if we didn't wait).
|
||||
try:
|
||||
p = subprocess.Popen(
|
||||
["python3", "-m", "osbuild"] + cmd_args + ["-"],
|
||||
encoding="utf-8",
|
||||
stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
["python3", "-m", "osbuild"] + cmd_args + ["-"],
|
||||
encoding="utf-8",
|
||||
stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
)
|
||||
data_stdout, data_stderr = p.communicate(data_stdin)
|
||||
except KeyboardInterrupt:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue