Make sonar a little happier.

I really should have commented the `pass` lines...
This commit is contained in:
Dave Shawley 2021-07-18 12:06:35 -04:00
parent 65745010ad
commit 3b9b9ccb2f
No known key found for this signature in database
GPG key ID: F41A8A99298F8EED

View file

@ -350,7 +350,7 @@ class ConnectorTests(ProcessorTestCase):
'sprockets_statsd.statsd.time.time') as time_function: 'sprockets_statsd.statsd.time.time') as time_function:
time_function.side_effect = [10.0, 22.345] time_function.side_effect = [10.0, 22.345]
with self.connector.timer('some.timer'): with self.connector.timer('some.timer'):
pass pass # exercising context manager
self.assertEqual(2, time_function.call_count) self.assertEqual(2, time_function.call_count)
await self.wait_for(self.statsd_server.message_received.acquire()) await self.wait_for(self.statsd_server.message_received.acquire())
@ -362,7 +362,7 @@ class ConnectorTests(ProcessorTestCase):
'sprockets_statsd.statsd.time.time') as time_function: 'sprockets_statsd.statsd.time.time') as time_function:
time_function.side_effect = [10.001, 10.000] time_function.side_effect = [10.001, 10.000]
with self.connector.timer('some.timer'): with self.connector.timer('some.timer'):
pass pass # exercising context manager
self.assertEqual(2, time_function.call_count) self.assertEqual(2, time_function.call_count)
await self.wait_for(self.statsd_server.message_received.acquire()) await self.wait_for(self.statsd_server.message_received.acquire())
@ -541,10 +541,10 @@ class ConnectorTimerTests(ProcessorTestCase):
async def test_that_timer_can_be_reused(self): async def test_that_timer_can_be_reused(self):
timer = self.connector.timer('whatever') timer = self.connector.timer('whatever')
with timer: with timer:
pass pass # exercising context manager
await self.wait_for(self.statsd_server.message_received.acquire()) await self.wait_for(self.statsd_server.message_received.acquire())
self.assertTrue(self.statsd_server.message_received.locked()) self.assertTrue(self.statsd_server.message_received.locked())
with timer: with timer:
pass pass # exercising context manager
await self.wait_for(self.statsd_server.message_received.acquire()) await self.wait_for(self.statsd_server.message_received.acquire())