mirror of
https://github.com/sprockets/sprockets-statsd.git
synced 2024-11-21 19:28:35 +00:00
Remove unused variable in test.
This commit is contained in:
parent
ed67689fe2
commit
89d20a5f89
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ class ConnectorTests(ProcessorTestCase):
|
|||
|
||||
# then overflow it a bunch of times
|
||||
overflow_count = self.connector._enqueue_log_guard.threshold * 5
|
||||
for value in range(overflow_count):
|
||||
for _ in range(overflow_count):
|
||||
self.connector.incr('counter')
|
||||
self.assertLess(self.connector.logger.warning.call_count,
|
||||
overflow_count)
|
||||
|
|
Loading…
Reference in a new issue