From 9a038d57b37c634e32d6ea5afb7d470aee178564 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 1 Dec 2009 04:53:24 +0000 Subject: Stop new Pyflakes complaints. --- repoze/bfg/tests/test_path.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'repoze/bfg/tests/test_path.py') diff --git a/repoze/bfg/tests/test_path.py b/repoze/bfg/tests/test_path.py index 8522eb387..043392311 100644 --- a/repoze/bfg/tests/test_path.py +++ b/repoze/bfg/tests/test_path.py @@ -24,7 +24,6 @@ class TestCallerPath(unittest.TestCase): import os from repoze.bfg.tests import test_path test_path.__bfg_abspath__ = '/foo/bar' - here = os.path.abspath(os.path.dirname(__file__)) result = self._callFUT('a/b/c') self.assertEqual(result, os.path.join('/foo/bar', 'a/b/c')) @@ -103,7 +102,7 @@ class TestPackagePath(unittest.TestCase): def test_memoization_success(self): from repoze.bfg.tests import test_path module = DummyPackageOrModule(test_path) - result = self._callFUT(module) + self._callFUT(module) self.assertEqual(module.__bfg_abspath__, module.package_path) def test_memoization_fail(self): -- cgit v1.2.3