-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9c3575
commit 9a86434
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ def test_update_billing_organization_users(self, billing_patch_request_mock: Mag | |
assert len(billing_patch_request_mock.call_args[1]["json"]["distinct_ids"]) == 2 | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_customer_email"] == "[email protected]" | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_admin_emails"] == ["[email protected]"] | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_admin_users"] == [ | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_users"] == [ | ||
{"email": "[email protected]", "distinct_id": y.distinct_id, "role": 15}, | ||
] | ||
|
||
|
@@ -121,7 +121,7 @@ def test_update_billing_organization_users_with_multiple_members(self, billing_p | |
assert len(billing_patch_request_mock.call_args[1]["json"]["distinct_ids"]) == 4 | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_customer_email"] == "[email protected]" | ||
assert sorted(billing_patch_request_mock.call_args[1]["json"]["org_admin_emails"]) == ["[email protected]", "[email protected]"] | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_admin_users"] == [ | ||
assert billing_patch_request_mock.call_args[1]["json"]["org_users"] == [ | ||
{"email": "[email protected]", "distinct_id": y2.distinct_id, "role": 8}, | ||
{"email": "[email protected]", "distinct_id": y3.distinct_id, "role": 15}, | ||
] |