Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to new TestCase using AT after PloneTestcase is now DX. #19

Merged
merged 1 commit into from
Sep 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ New features:

Bug fixes:

- *add item here*

- Switch to new TestCase using AT after PloneTestcase is now DX.
[pbauer]

2.1.19 (2018-02-02)
-------------------
Expand Down
6 changes: 3 additions & 3 deletions Products/contentmigration/tests/layer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from plone.app.testing import bbb
from plone.app.testing import bbb_at
from plone.app import testing
from plone.testing import z2
from Products.GenericSetup import EXTENSION, profile_registry
Expand All @@ -13,9 +13,9 @@ def setupSampleTypeProfile():
EXTENSION)


class PloneTestCaseFixture(bbb.PloneTestCaseFixture):
class PloneTestCaseFixture(bbb_at.PloneTestCaseFixture):

defaultBases = (bbb.PTC_FIXTURE, )
defaultBases = (bbb_at.PTC_FIXTURE, )

def setUpZope(self, app, configurationContext):
setupSampleTypeProfile()
Expand Down