We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088f20c commit 7184e7dCopy full SHA for 7184e7d
tests/integration/modules/test_pkg.py
@@ -240,9 +240,9 @@ def test_pkg_info(self, grains):
240
func = 'pkg.info_installed'
241
242
if grains['os_family'] == 'Debian':
243
- ret = self.run_function(func, ['bash-completion', 'dpkg'])
+ ret = self.run_function(func, ['bash', 'dpkg'])
244
keys = ret.keys()
245
- self.assertIn('bash-completion', keys)
+ self.assertIn('bash', keys)
246
self.assertIn('dpkg', keys)
247
elif grains['os_family'] == 'RedHat':
248
ret = self.run_function(func, ['rpm', 'bash'])
0 commit comments