From 611184f242e69e1af3f29c03b9945f7dc617269b Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 27 May 2013 09:09:32 +0000 Subject: [PATCH] Add '--no-options' to unittest on _make_options() output. --- tests/test_gnupg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_gnupg.py b/tests/test_gnupg.py index 2039f34..58b56f0 100644 --- a/tests/test_gnupg.py +++ b/tests/test_gnupg.py @@ -269,7 +269,7 @@ class GPGTestCase(unittest.TestCase): self.gpg.options = ['--tyrannosaurus-rex', '--stegosaurus'] cmd = self.gpg._make_args(None, False) expected = ['/usr/bin/gpg', - '--no-emit-version --no-tty --status-fd 2', + '--no-options --no-emit-version --no-tty --status-fd 2', '--homedir "%s"' % self.homedir, '--no-default-keyring --keyring %s' % self.keyring, '--secret-keyring %s' % self.secring,