Skip to content

Commit f8dda00

Browse files
authored
removing test_delete_account_enterpriseid and test_delete_account_adobeid
1 parent bd701c4 commit f8dda00

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tests/test_functional.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -355,27 +355,12 @@ def test_remove_from_organization_delete_adobeid():
355355
"user": "[email protected]",
356356
"useAdobeID": True}
357357

358-
359-
def test_delete_account_enterpriseid():
360-
user = UserAction(id_type=IdentityTypes.enterpriseID, email="[email protected]")
361-
user.delete_account()
362-
assert user.wire_dict() == {"do": [{"removeFromDomain": {}}],
363-
"user": "[email protected]"}
364-
365-
366-
def test_delete_account_adobeid():
367-
user = UserAction(id_type=IdentityTypes.adobeID, email="[email protected]")
368-
with pytest.raises(ValueError):
369-
user.delete_account()
370-
371-
372358
def test_add_to_products():
373359
group = UserGroupAction(group_name="SampleUsers")
374360
group.add_to_products(products=["Photoshop", "Illustrator"])
375361
assert group.wire_dict() == {"do": [{"add": {"productConfiguration": ["Photoshop", "Illustrator"]}}],
376362
"usergroup": "SampleUsers"}
377363

378-
379364
def test_add_to_products_all():
380365
group = UserGroupAction(group_name="SampleUsers")
381366
group.add_to_products(all_products=True)

0 commit comments

Comments
 (0)