[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-28 11:02:10 +03:00
parent 0e826c02b1
commit d5672eb44f

@ -1695,6 +1695,7 @@ def kernel_27():
'%d' % (t1[1] - t1[0]),
'%s' % t4,
], stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
if False:
pprint.pprint(p.communicate())
p.wait()
assert p.returncode == 0
@ -1710,6 +1711,7 @@ def kernel_27():
''' % (t4, t2)
pprint.pprint([t4, t2, t6])
with subprocess.Popen(t6, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
if False:
pprint.pprint(p.communicate())
p.wait()
assert p.returncode == 0