Skip to content

Commit

Permalink
feat(github-actions): fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomario committed Jan 31, 2025
1 parent 150bbb2 commit 3a187a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/contrib/ds/accordion/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from cms.plugin_rendering import ContentRenderer
from cms.test_utils.testcases import CMSTestCase

from .cms_plugins import AccordionPlugin, AccordionItemPlugin
from ..cms_plugins import AccordionPlugin, AccordionItemPlugin

# from .models import Context, Target

Expand Down
2 changes: 1 addition & 1 deletion app/contrib/ds/card/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from cms.test_utils.testcases import CMSTestCase
from filer.models import File

from .cms_plugins import CardPlugin
from ..cms_plugins import CardPlugin

# from .models import Context, Target

Expand Down
2 changes: 1 addition & 1 deletion app/contrib/ds/carousel/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from cms.plugin_rendering import ContentRenderer
from cms.test_utils.testcases import CMSTestCase

from .cms_plugins import CarouselPlugin, CarouselContentPlugin
from ..cms_plugins import CarouselPlugin, CarouselContentPlugin

# from .models import Context, Target

Expand Down
2 changes: 1 addition & 1 deletion app/contrib/ds/grid/tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from cms.api import add_plugin, create_page
from cms.test_utils.testcases import CMSTestCase

from .cms_plugins import GridPlugin, ColumnPlugin
from ..cms_plugins import GridPlugin, ColumnPlugin


# Create your tests here.
Expand Down
2 changes: 1 addition & 1 deletion app/contrib/ds/link/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from cms.test_utils.testcases import CMSTestCase

# from .cms_plugins import GridPlugin, ColumnPlugin
from .models import Context, Target, Styled, Size, IconPosition
from ..models import Context, Target, Styled, Size, IconPosition


# Create your tests here.
Expand Down

0 comments on commit 3a187a3

Please sign in to comment.