@@ -291,28 +291,21 @@ def test_import_contacts_tools(self):
291291 assert hasattr (contacts_tools , "list_contacts" )
292292 assert hasattr (contacts_tools , "get_contact" )
293293 assert hasattr (contacts_tools , "search_contacts" )
294- assert hasattr (contacts_tools , "create_contact" )
295- assert hasattr (contacts_tools , "update_contact" )
296- assert hasattr (contacts_tools , "delete_contact" )
294+ assert hasattr (contacts_tools , "manage_contact" )
297295
298296 def test_import_group_tools (self ):
299297 """Test that group tools can be imported."""
300298 from gcontacts import contacts_tools
301299
302300 assert hasattr (contacts_tools , "list_contact_groups" )
303301 assert hasattr (contacts_tools , "get_contact_group" )
304- assert hasattr (contacts_tools , "create_contact_group" )
305- assert hasattr (contacts_tools , "update_contact_group" )
306- assert hasattr (contacts_tools , "delete_contact_group" )
307- assert hasattr (contacts_tools , "modify_contact_group_members" )
302+ assert hasattr (contacts_tools , "manage_contact_group" )
308303
309304 def test_import_batch_tools (self ):
310305 """Test that batch tools can be imported."""
311306 from gcontacts import contacts_tools
312307
313- assert hasattr (contacts_tools , "batch_create_contacts" )
314- assert hasattr (contacts_tools , "batch_update_contacts" )
315- assert hasattr (contacts_tools , "batch_delete_contacts" )
308+ assert hasattr (contacts_tools , "manage_contacts_batch" )
316309
317310
318311class TestConstants :
0 commit comments