Skip to content

Commit

Permalink
import fixes for the tahoe-idp receivers mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlandia committed Jun 27, 2023
1 parent ee68b8f commit 0de5fe1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
from django.db.models.signals import post_save
from django.urls import reverse
from django.contrib.auth import get_user_model
from django.contrib.auth.models import User

from rest_framework.test import APITestCase
from rest_framework import status

from student.models import UserProfile

from ...multi_tenant_emails.tests.test_utils import with_organization_context

from openedx.core.djangoapps.user_api.accounts.tests.retirement_helpers import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import ddt

from django.conf import settings
from django.contrib.auth.models import User
from django.core import mail
from django.db.models.signals import post_save
from django.test import RequestFactory, TestCase
from unittest.mock import Mock, patch
from openedx.core.djangoapps.user_authn.views.password_reset import password_reset
from openedx.core.djangolib.testing.utils import skip_unless_lms

from student.models import UserProfile
from student.tests.factories import UserFactory


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
import ddt
from mock import patch

from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.urls import reverse_lazy
from rest_framework import status
from rest_framework.test import APITestCase

from openedx.core.djangolib.testing.utils import skip_unless_lms
from student.models import User

from ...multi_tenant_emails.tests.test_utils import with_organization_context

Expand Down

0 comments on commit 0de5fe1

Please sign in to comment.