summaryrefslogtreecommitdiff
path: root/test/t/test_cpio.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_cpio.py')
-rw-r--r--test/t/test_cpio.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/t/test_cpio.py b/test/t/test_cpio.py
index 69bb5702..1b9e37df 100644
--- a/test/t/test_cpio.py
+++ b/test/t/test_cpio.py
@@ -11,6 +11,8 @@ class TestCpio:
@pytest.mark.complete("cpio -R ")
def test_2(self, bash, completion):
users = sorted(
- assert_bash_exec(bash, "compgen -A user", want_output=True).split()
+ assert_bash_exec(bash, "compgen -A user", want_output=True)
+ .strip()
+ .splitlines()
)
- assert completion == users
+ assert list(completion) == users