File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ def test_recording_chunked_cursor(self):
6363 # ensure query was logged
6464 self .assertEqual (len (self .panel ._queries ), 1 )
6565
66- @patch (' debug_toolbar.panels.sql.tracking.state' , wraps = sql_tracking .state )
66+ @patch (" debug_toolbar.panels.sql.tracking.state" , wraps = sql_tracking .state )
6767 def test_cursor_wrapper_singleton (self , mock_state ):
6868 list (User .objects .all ())
6969
7070 # ensure that cursor wrapping is applied only once
7171 self .assertEqual (mock_state .Wrapper .call_count , 1 )
7272
73- @patch (' debug_toolbar.panels.sql.tracking.state' , wraps = sql_tracking .state )
73+ @patch (" debug_toolbar.panels.sql.tracking.state" , wraps = sql_tracking .state )
7474 def test_chunked_cursor_wrapper_singleton (self , mock_state ):
7575 list (User .objects .all ().iterator ())
7676
You can’t perform that action at this time.
0 commit comments