@@ -200,7 +200,7 @@ def before_each(self):
200200 self .assertEqual (user_map , vgridaccess .last_map [USERS ])
201201
202202 def test_force_update_user_map (self ):
203- """Simple test that user map refresh completes"""
203+ """Simple test that forced user map update completes"""
204204 # Verify empty map on init
205205 user_map_before , _ = load_user_map (self .configuration )
206206 self .assertEqual (user_map_before , {})
@@ -212,7 +212,7 @@ def test_force_update_user_map(self):
212212 self .assertIn (self .TEST_USER_DN , updated_users )
213213
214214 def test_force_update_resource_map (self ):
215- """Simple test that resource map refresh completes"""
215+ """Simple test that forced resource map update completes"""
216216 # Verify empty map on init
217217 res_map_before , _ = load_resource_map (self .configuration )
218218 self .assertEqual (res_map_before , {})
@@ -224,7 +224,7 @@ def test_force_update_resource_map(self):
224224 self .assertIn (self .TEST_RESOURCE_ID , updated_res )
225225
226226 def test_force_update_vgrid_map (self ):
227- """Simple test that vgrid map refresh completes"""
227+ """Simple test that forced vgrid map update completes"""
228228 # Only (implicit) default vgrid in vgrid map before init
229229 vgrid_map_before , _ = load_vgrid_map (self .configuration )
230230 self .assertEqual (vgrid_map_before .get (VGRIDS , {}), self .MINIMAL_VGRIDS )
@@ -256,14 +256,14 @@ def test_refresh_vgrid_map(self):
256256 self .assertIn (self .TEST_VGRID_NAME , vgrid_map .get (VGRIDS , {}))
257257
258258 def test_get_user_map (self ):
259- """Minimal test for user map refresh functionality"""
259+ """Minimal test for get user map functionality"""
260260 self ._provision_test_user (self , self .TEST_USER_DN )
261261 force_update_user_map (self .configuration )
262262 user_map = get_user_map (self .configuration )
263263 self .assertIn (self .TEST_USER_DN , user_map )
264264
265265 def test_get_resource_map (self ):
266- """Minimal test for user map refresh functionality"""
266+ """Minimal test for get user map functionality"""
267267 self ._create_resource (self .TEST_RESOURCE_ID , [self .TEST_OWNER_DN ])
268268 force_update_resource_map (self .configuration )
269269 resource_map = get_resource_map (self .configuration )
0 commit comments