From bf1f3d4219e5bd616165c1095b2a6eb743840c10 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 6 Dec 2009 17:36:13 +0000 Subject: Test failure on 2.7a1. --- repoze/bfg/tests/test_path.py | 4 ++-- 1 file 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): -- cgit v1.2.3