summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/crypto_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/crypto_test.py b/tests/crypto_test.py
index f6c02a7e..25cce8ba 100644
--- a/tests/crypto_test.py
+++ b/tests/crypto_test.py
@@ -12,9 +12,9 @@ import unittest
import gpg
import mock
+import urwid
from alot import crypto
-from alot import helper
from alot.errors import GPGProblem, GPGCode
from . import utilities
@@ -58,8 +58,8 @@ def tearDownModule():
# Kill any gpg-agent's that have been opened
lookfor = 'gpg-agent --homedir {}'.format(os.environ['GNUPGHOME'])
- out = helper.try_decode(
- subprocess.check_output(['ps', 'xo', 'pid,cmd'], stderr=DEVNULL))
+ out = subprocess.check_output(
+ ['ps', 'xo', 'pid,cmd'], stderr=DEVNULL).decode(urwid.util.detected_encoding)
for each in out.strip().split('\n'):
pid, cmd = each.strip().split(' ', 1)
if cmd.startswith(lookfor):