summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2018-12-05 09:49:42 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2019-05-11 17:37:57 +0100
commit6c16e55d78b69284798d0398aaa45b4914ba4eb8 (patch)
tree7bc3dc71950d0370fd3e8c3c342353b9f824188d /tests
parenta24966346e42421fa020cba285af9fc09c89eaa2 (diff)
fix pyflakes issues
Diffstat (limited to 'tests')
-rw-r--r--tests/commands/test_global.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/commands/test_global.py b/tests/commands/test_global.py
index 60ad7993..8fab79ce 100644
--- a/tests/commands/test_global.py
+++ b/tests/commands/test_global.py
@@ -118,8 +118,7 @@ class TestComposeCommand(unittest.TestCase):
cmd._set_envelope()
with mock.patch('alot.commands.globals.settings.get_accounts',
mock.Mock(return_value=[account])):
- await cmd._set_from()
-
+ await cmd._set_from(mock.Mock())
class TestExternalCommand(unittest.TestCase):