diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-01-15 14:03:15 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-01-15 14:03:15 +0000 |
| commit | ed2d14004304199cb60d96d949d6d0f26254cb32 (patch) | |
| tree | a69ca446d3cca04a8a5ce60a64e9b749dbcf448e /repoze/bfg/tests/test_push.py | |
| parent | 6049d926a36dd2e2a5127a475ee73d2914e14eb4 (diff) | |
| download | pyramid-ed2d14004304199cb60d96d949d6d0f26254cb32.tar.gz pyramid-ed2d14004304199cb60d96d949d6d0f26254cb32.tar.bz2 pyramid-ed2d14004304199cb60d96d949d6d0f26254cb32.zip | |
Get rid of PlacelessSetup.
Diffstat (limited to 'repoze/bfg/tests/test_push.py')
| -rw-r--r-- | repoze/bfg/tests/test_push.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/repoze/bfg/tests/test_push.py b/repoze/bfg/tests/test_push.py index 83f02850b..4220d9a5a 100644 --- a/repoze/bfg/tests/test_push.py +++ b/repoze/bfg/tests/test_push.py @@ -1,13 +1,13 @@ import unittest -from zope.component.testing import PlacelessSetup +from zope.testing.cleanup import cleanUp -class Test_pushpage(unittest.TestCase, PlacelessSetup): +class Test_pushpage(unittest.TestCase): def setUp(self): - PlacelessSetup.setUp(self) + cleanUp() def tearDown(self): - PlacelessSetup.tearDown(self) + cleanUp() def _zcmlConfigure(self): import repoze.bfg.includes |
