@@ -20,7 +20,7 @@ def get_mocks(self):
2020 return CatalogCache (catalog , token = "bogus" ), catalog
2121
2222 def test_cache (self ):
23- cc , catalog = self .get_mocks ()
23+ cc , catalog = self .get_mocks ()
2424 catalog .get_module_version .return_value = CATALOG_GET_MODULE_VERSION
2525 out = cc .get_module_info ("bogus" , "method" )
2626 self .assertIn ("git_commit_hash" , out )
@@ -33,7 +33,7 @@ def test_cache(self):
3333 self .assertIn ("secure_config_params" , out )
3434
3535 def test_secure_params (self ):
36- cc , catalog = self .get_mocks ()
36+ cc , catalog = self .get_mocks ()
3737 catalog .get_module_version .return_value = CATALOG_GET_MODULE_VERSION
3838 catalog .get_secure_config_params .return_value = (
3939 CATALOG_GET_SECURE_CONFIG_PARAMS
@@ -47,7 +47,7 @@ def test_secure_params(self):
4747 self .assertGreater (len (out ["secure_config_params" ]), 0 )
4848
4949 def test_volume (self ):
50- cc , catalog = self .get_mocks ()
50+ cc , catalog = self .get_mocks ()
5151 vols = deepcopy (CATALOG_LIST_VOLUME_MOUNTS )
5252 catalog .list_volume_mounts .return_value = vols
5353 out = cc .get_volume_mounts ("bogus" , "method" , "upload" )
0 commit comments