aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_write_error.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-03-24 17:38:41 -0400
committerDavid Robillard <d@drobilla.net>2025-03-24 17:40:50 -0400
commit64dba9134520547180d2e9404f5a7b592e560ae5 (patch)
tree5b458af0091423caff52b1ddbe1c0f44635d7eb8 /test/test_write_error.py
parent8785ef4b74e6a54cdd7c83e69c01a72d8e200314 (diff)
downloadserd-64dba9134520547180d2e9404f5a7b592e560ae5.tar.gz
serd-64dba9134520547180d2e9404f5a7b592e560ae5.tar.bz2
serd-64dba9134520547180d2e9404f5a7b592e560ae5.zip
Always specify encoding to subprocess run functions
Diffstat (limited to 'test/test_write_error.py')
-rwxr-xr-xtest/test_write_error.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/test_write_error.py b/test/test_write_error.py
index b62f981a..93b0249a 100755
--- a/test/test_write_error.py
+++ b/test/test_write_error.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright 2022-2023 David Robillard <d@drobilla.net>
+# Copyright 2022-2025 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: ISC
"""Test errors writing to a file."""
@@ -18,11 +18,15 @@ command = shlex.split(args.wrapper) + [args.serdi, args.input]
if os.path.exists("/dev/full"):
with open("/dev/full", "w", encoding="utf-8") as out:
proc = subprocess.run(
- command, check=False, stdout=out, stderr=subprocess.PIPE
+ command,
+ encoding="utf-8",
+ check=False,
+ stdout=out,
+ stderr=subprocess.PIPE,
)
assert proc.returncode != 0
- assert "error" in proc.stderr.decode("utf-8")
+ assert "error" in proc.stderr
else:
sys.stderr.write("warning: /dev/full not present, skipping test")