File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ async def asyncTearDown(self):
5959class TestAsyncPeriodicExecutorRepr (AsyncUnitTest ):
6060 async def test_repr_contains_class_and_name (self ):
6161 executor = _make_executor (name = "exec" )
62- r = repr (executor )
63- self .assertIn ("AsyncPeriodicExecutor" , r )
64- self .assertIn ("exec" , r )
62+ executor_repr = repr (executor )
63+ self .assertIn ("AsyncPeriodicExecutor" , executor_repr )
64+ self .assertIn ("exec" , executor_repr )
6565
6666
6767class TestAsyncPeriodicExecutorBasic (AsyncPeriodicExecutorTestBase ):
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ def tearDown(self):
5757class TestPeriodicExecutorRepr (UnitTest ):
5858 def test_repr_contains_class_and_name (self ):
5959 executor = _make_executor (name = "exec" )
60- r = repr (executor )
61- self .assertIn ("PeriodicExecutor" , r )
62- self .assertIn ("exec" , r )
60+ executor_repr = repr (executor )
61+ self .assertIn ("PeriodicExecutor" , executor_repr )
62+ self .assertIn ("exec" , executor_repr )
6363
6464
6565class TestPeriodicExecutorBasic (PeriodicExecutorTestBase ):
You can’t perform that action at this time.
0 commit comments