-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update dependencies * fix: replace mock_s3 with mock_aws
- Loading branch information
1 parent
4d8343c
commit 470615d
Showing
6 changed files
with
67 additions
and
136 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
from django.urls import reverse | ||
from httpx import Response | ||
from mixer.backend.django import mixer | ||
from moto import mock_s3 | ||
from moto import mock_aws | ||
|
||
from apps.auth.providers import GoogleProvider | ||
from apps.collaboration.models import Membership | ||
|
@@ -52,7 +52,7 @@ def pending_membership_not_registered_lowercase_email(): | |
return mixer.blend(Membership, pending_email="[email protected]", user=None) | ||
|
||
|
||
@mock_s3 | ||
@mock_aws | ||
def test_signup_signal_membership_update_with_mixed_case_email( | ||
client, access_tokens_google, pending_membership_not_registered_mixed_case_email, respx_mock | ||
): | ||
|
@@ -71,7 +71,7 @@ def test_signup_signal_membership_update_with_mixed_case_email( | |
assert membership.user is not None | ||
|
||
|
||
@mock_s3 | ||
@mock_aws | ||
def test_signup_signal_membership_update_with_lowercase_email( | ||
client, access_tokens_google, pending_membership_not_registered_lowercase_email, respx_mock | ||
): | ||
|
Oops, something went wrong.