Skip to content

Commit

Permalink
Update btrfstests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewc12 committed Jul 29, 2023
1 parent d69687c commit b8d785a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions contrib/windows/tests/btrfstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,10 @@ def main():

print(ret.stdout.decode())

print(str(test), ret.stdout.decode().splitlines()[-1])
log_file.write(str(test), ret.stdout.decode().splitlines()[-1])
out = " ".join(str(test), ret.stdout.decode().splitlines()[-1])

print(out)
log_file.write(out)

preTest()
runWithPrint(["zpool", "destroy", "-f", "test01"])
Expand Down

0 comments on commit b8d785a

Please sign in to comment.