summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDidier Wenzek <didier.wenzek@acidalie.com>2021-07-07 14:09:38 +0100
committerGitHub <noreply@github.com>2021-07-07 14:09:38 +0100
commit4c5cf794e89fb3233f73c1c98d7dc360cf5f9e5d (patch)
tree6a168fe0232dee146dc7ba03409c0e8880b57a51 /tests
parent56fa4f7268b74bf6e6130fa975194138c4157470 (diff)
Remove unstable test (#333)
Relaying on the fact that `systemd` is not listed by `apt list --manual-installed` is fragile. This test has been simply removed, the list feature being tested by the install and remove tests. Co-authored-by: Wenzek <diw@softwareag.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/PySys/apt-plugin/apt-list-format/run.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/PySys/apt-plugin/apt-list-format/run.py b/tests/PySys/apt-plugin/apt-list-format/run.py
index c9502676..8b36e7a5 100644
--- a/tests/PySys/apt-plugin/apt-list-format/run.py
+++ b/tests/PySys/apt-plugin/apt-list-format/run.py
@@ -31,9 +31,6 @@ class AptPluginListTest(BaseTest):
grep_version = open(self.output + '/dpkg_query.out', 'r').read().strip()
self.assertGrep ("apt_plugin.out", '{"name":"grep","version":"'+ grep_version + '"}', contains=True)
- # systemd is installed but should not be listed
- self.assertGrep ("apt_plugin.out", '"name":"systemd"', contains=False)
-
def validate_json(self):
f = open(self.output + '/apt_plugin.out', 'r')
lines = f.readlines()