Skip to content

Commit

Permalink
fixed some imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
opaduchak committed Aug 1, 2024
1 parent cf3f0a0 commit 44028a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/comments/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from rest_framework.exceptions import ValidationError, PermissionDenied
from api.base.exceptions import InvalidModelValueError, Conflict
from api.base.utils import absolute_reverse
from api.base.settings import osf_settings
from website import settings as osf_settings
from api.base.serializers import (
JSONAPISerializer,
TargetField,
Expand Down
2 changes: 1 addition & 1 deletion api_tests/comments/views/test_comment_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from addons.wiki.tests.factories import WikiFactory
from api.base.settings.defaults import API_BASE
from api.base.settings import osf_settings
from website import settings as osf_settings
from api_tests import utils as test_utils
from framework.auth import core
from osf.models import Guid
Expand Down
2 changes: 1 addition & 1 deletion api_tests/nodes/views/test_node_comments_list.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

from addons.wiki.tests.factories import WikiFactory
from api.base.settings import osf_settings
from website import settings as osf_settings
from api.base.settings.defaults import API_BASE
from api_tests import utils as test_utils
from framework.auth import core
Expand Down

0 comments on commit 44028a5

Please sign in to comment.