summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 6ec04ed5..e62507ed 100644
--- a/tests/test_apt_cache.py
+++ b/tests/test_apt_cache.py
@@ -185,11 +185,11 @@ class TestAptCache(unittest.TestCase):
cache = apt.Cache(rootdir="/")
l = []
l.append(cache["libc6"])
- l.append(cache["xterm"])
+ l.append(cache["python3"])
l.append(cache["apt"])
l.sort()
self.assertEqual([p.name for p in l],
- ["apt", "libc6", "xterm"])
+ ["apt", "libc6", "python3"])
def test_get_architectures(self):
main_arch = apt.apt_pkg.config.get("APT::Architecture")