From 57c801f9472ac8572110f8958be1089fca6937f1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 7 Sep 2010 13:57:09 +0200 Subject: tests/test_apt_cache.py: reset apt_pkg.config when running the tests --- tests/test_apt_cache.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_apt_cache.py b/tests/test_apt_cache.py index 2f74a0bd..a5b52ea3 100644 --- a/tests/test_apt_cache.py +++ b/tests/test_apt_cache.py @@ -21,6 +21,10 @@ import shutil class TestAptCache(unittest.TestCase): """ test the apt cache """ + def setUp(self): + # reset any config manipulations done in the individual tests + apt_pkg.init_config() + def testAptCache(self): """cache: iterate all packages and all dependencies """ cache = apt.Cache() -- cgit v1.2.3