Skip to content

Commit

Permalink
style: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pmakwana93 committed Jul 23, 2024
1 parent 552b29e commit d7cd89d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion enterprise/api/v1/views/enterprise_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
Views for the ``enterprise-user`` API endpoint.
"""

from django.core.exceptions import ValidationError
from django_filters.rest_framework import DjangoFilterBackend
from rest_framework import permissions, response, status

from django.core.exceptions import ValidationError

from enterprise import models
from enterprise.api.v1 import serializers
from enterprise.api.v1.views.base_views import EnterpriseReadOnlyModelViewSet
Expand Down
2 changes: 1 addition & 1 deletion tests/test_enterprise/api/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -9652,7 +9652,7 @@ def test_get_pending_enterprise_user(self):
"""
Assert whether the response is valid.
"""
enterprise_customer = factories.EnterpriseCustomerFactory(uuid=FAKE_UUIDS[0])
enterprise_customer = factories.EnterpriseCustomerFactory(uuid=FAKE_UUIDS[1])
pending_user = PendingEnterpriseCustomerUserFactory(
enterprise_customer=enterprise_customer,
)
Expand Down

0 comments on commit d7cd89d

Please sign in to comment.