summaryrefslogtreecommitdiff
path: root/tests/test_apt_cache.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-01-31 15:07:32 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2012-01-31 15:07:32 +0100
commit601d841cc3644f827487a277b5e031323450a6c4 (patch)
treebe3812288ff3f77ec53de80c5e15ff8429f73578 /tests/test_apt_cache.py
parent9543d9414085ba8f9b29f8b5fe6dca72d6af5fa1 (diff)
parent64c1ffa6310efdff6353346fe621aea10e36f2c9 (diff)
downloadpython-apt-601d841cc3644f827487a277b5e031323450a6c4.tar.gz
merged from lp:~mvo/python-apt/mvo
Diffstat (limited to 'tests/test_apt_cache.py')
-rw-r--r--tests/test_apt_cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_apt_cache.py b/tests/test_apt_cache.py
index 2bc19353..448aed75 100644
--- a/tests/test_apt_cache.py
+++ b/tests/test_apt_cache.py
@@ -190,12 +190,12 @@ class TestAptCache(unittest.TestCase):
def test_package_cmp(self):
cache = apt.Cache(rootdir="/")
l = []
- l.append(cache["libc6"])
+ l.append(cache["intltool"])
l.append(cache["python3"])
l.append(cache["apt"])
l.sort()
self.assertEqual([p.name for p in l],
- ["apt", "libc6", "python3"])
+ ["apt", "intltool", "python3"])
def test_get_architectures(self):
main_arch = apt.apt_pkg.config.get("APT::Architecture")