From 28071a3e72a2d00e6d5ad82ba1c3028fa72ff4ca Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Wed, 28 Oct 2015 11:06:56 -0700 Subject: [PATCH] Fix stray ref --- letsencrypt/tests/cli_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/tests/cli_test.py b/letsencrypt/tests/cli_test.py index e7062f675..669fa1ce8 100644 --- a/letsencrypt/tests/cli_test.py +++ b/letsencrypt/tests/cli_test.py @@ -132,7 +132,7 @@ class CLITest(unittest.TestCase): with MockedVerb("certonly") as mock_certonly: self._call(["auth", "--standalone"]) - self.assertEqual(1, mock_auth.call_count) + self.assertEqual(1, mock_certonly.call_count) def test_rollback(self): _, _, _, client = self._call(['rollback'])