-
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
a005e30
commit 2663bea
Showing
14 changed files
with
32 additions
and
24 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
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
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
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
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
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
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 |
---|---|---|
|
@@ -62,6 +62,7 @@ def test_api_sign_up(self, mock_capture): | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "John", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|
@@ -210,6 +211,7 @@ def test_signup_minimum_attrs(self, mock_capture): | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "Jane", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|
@@ -364,6 +366,7 @@ def test_default_dashboard_is_created_on_signup(self): | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "Jane", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|
@@ -868,6 +871,7 @@ def test_api_invite_sign_up(self, mock_capture): | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "Alice", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|
@@ -1076,6 +1080,7 @@ def test_existing_user_can_sign_up_to_a_new_organization(self, mock_update_disti | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|
@@ -1151,6 +1156,7 @@ def test_cannot_use_claim_invite_endpoint_to_update_user(self, mock_capture): | |
"id": user.pk, | ||
"uuid": str(user.uuid), | ||
"distinct_id": user.distinct_id, | ||
"last_name": "", | ||
"first_name": "", | ||
"email": "[email protected]", | ||
"redirect_url": "/", | ||
|