File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
openwisp_controller/config/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ def test_get_cached_checksum(self):
262262 self .assertEqual (c .get_cached_checksum (), c .checksum )
263263 mocked_debug .assert_called_once ()
264264
265- with self .subTest (' cache invalidation works when config is deactivated' ):
265+ with self .subTest (" cache invalidation works when config is deactivated" ):
266266 with patch .object (base_config_logger , "debug" ) as mocked_debug :
267267 old_checksum = c .checksum
268268 c .deactivate ()
@@ -837,11 +837,11 @@ def test_config_modified_sent(self):
837837
838838 def test_check_changes_query (self ):
839839 config = self ._create_config (organization = self ._get_org ())
840- with self .subTest (' No changes made to the config object' ):
840+ with self .subTest (" No changes made to the config object" ):
841841 with self .assertNumQueries (3 ):
842842 config ._check_changes ()
843843
844- with self .subTest (' Changes made to the config object' ):
844+ with self .subTest (" Changes made to the config object" ):
845845 config .templates .add (self ._create_template ())
846846 config .config = {"general" : {"description" : "test" }}
847847 with self .assertNumQueries (4 ):
You can’t perform that action at this time.
0 commit comments