Skip to content

Commit

Permalink
fix: dangling imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nileshgulia1 committed May 2, 2023
1 parent 58872d1 commit 61362b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/collective/taxonomy/tests/test_controlpanel_restapi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from collective.taxonomy.testing import API_FUNCTIONAL_TESTING
from collective.taxonomy.testing import FUNCTIONAL_TESTING
from plone.app.testing import applyProfile
from plone.app.testing import setRoles
from plone.app.testing import TEST_USER_ID
Expand All @@ -14,7 +14,7 @@
class TestControlPanelRestapi(unittest.TestCase):
"""Test JSON views."""

layer = API_FUNCTIONAL_TESTING
layer = FUNCTIONAL_TESTING

def setUp(self):
self.portal = self.layer["portal"]
Expand Down
4 changes: 2 additions & 2 deletions src/collective/taxonomy/tests/test_taxonomy_endpoint.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from collective.taxonomy.testing import API_FUNCTIONAL_TESTING
from collective.taxonomy.testing import FUNCTIONAL_TESTING
from plone.app.testing import applyProfile
from plone.app.testing import setRoles
from plone.app.testing import TEST_USER_ID
Expand All @@ -14,7 +14,7 @@
class TestTaxonomyEndpoint(unittest.TestCase):
"""Test JSON views."""

layer = API_FUNCTIONAL_TESTING
layer = FUNCTIONAL_TESTING

def setUp(self):
self.portal = self.layer["portal"]
Expand Down

0 comments on commit 61362b1

Please sign in to comment.