diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-12-06 17:36:13 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-12-06 17:36:13 +0000 |
| commit | bf1f3d4219e5bd616165c1095b2a6eb743840c10 (patch) | |
| tree | f9f7fb1046b3cdcf198d91ad15cb105a4f0ae478 /repoze | |
| parent | b541caecff9ecd14545ca16f9fe278c29fbaf4a3 (diff) | |
| download | pyramid-bf1f3d4219e5bd616165c1095b2a6eb743840c10.tar.gz pyramid-bf1f3d4219e5bd616165c1095b2a6eb743840c10.tar.bz2 pyramid-bf1f3d4219e5bd616165c1095b2a6eb743840c10.zip | |
Test failure on 2.7a1.
Diffstat (limited to 'repoze')
| -rw-r--r-- | repoze/bfg/tests/test_path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/repoze/bfg/tests/test_path.py b/repoze/bfg/tests/test_path.py index 043392311..dac32b244 100644 --- a/repoze/bfg/tests/test_path.py +++ b/repoze/bfg/tests/test_path.py @@ -51,9 +51,9 @@ class TestCallerModule(unittest.TestCase): self.assertEqual(result, test_path) def test_it_level_3(self): - import unittest + from repoze.bfg.tests import test_path result = self._callFUT(3) - self.assertEqual(result, unittest) + self.failIfEqual(result, test_path) class TestCallerPackage(unittest.TestCase): def _callFUT(self, *arg, **kw): |
