Skip to content

Commit

Permalink
Remove unittest2 dependencyi
Browse files Browse the repository at this point in the history
  • Loading branch information
kakshay21 committed May 31, 2017
1 parent 5c435c0 commit 264d320
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/plone/app/theming/tests/test_controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from plone.app.theming.testing import THEMING_FUNCTIONAL_TESTING
from plone.testing.z2 import Browser

import unittest2 as unittest
import unittest


class TestControlPanel(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion src/plone/app/theming/tests/test_exportimport.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from plone.app.theming.testing import THEMING_INTEGRATION_TESTING

import unittest2 as unittest
import unittest


class TestExportImport(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion src/plone/app/theming/tests/test_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import threading
import time
import transaction
import unittest2 as unittest
import unittest


class TestFunctional(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion src/plone/app/theming/tests/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import os.path
import re
import unittest2 as unittest
import unittest


class TestCase(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion src/plone/app/theming/tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from plone.app.theming.testing import THEMING_INTEGRATION_TESTING

import unittest2 as unittest
import unittest


class TestIntegration(unittest.TestCase):
Expand Down

0 comments on commit 264d320

Please sign in to comment.