mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
rename unused variable
This commit is contained in:
parent
a7b648971d
commit
c24376cce6
1 changed files with 1 additions and 1 deletions
|
|
@ -336,7 +336,7 @@ class TestSimpleTLSSNI01Server(unittest.TestCase):
|
|||
def test_it(self, mock_logger):
|
||||
max_attempts = 5
|
||||
self.thread.start()
|
||||
for attempt in range(max_attempts):
|
||||
for _ in range(max_attempts):
|
||||
if mock_logger.info.called:
|
||||
# Get the port selection which was logged
|
||||
port = mock_logger.info.call_args[0][-1]
|
||||
|
|
|
|||
Loading…
Reference in a new issue