diff options
-rw-r--r-- | meta/lib/oeqa/runtime/cases/dnf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/dnf.py b/meta/lib/oeqa/runtime/cases/dnf.py index 7da31cbf88..67484bc9f9 100644 --- a/meta/lib/oeqa/runtime/cases/dnf.py +++ b/meta/lib/oeqa/runtime/cases/dnf.py @@ -157,7 +157,7 @@ class DnfRepoTest(DnfTest): #check curl-dev is not installed adter removing all curl occurrences status, output = self.target.run('dnf list --installed | grep %s'% excludepkg, 1500) self.assertEqual(1, status, "%s was not removed, is listed as installed"%excludepkg) - self.dnf_with_repo('install -y --exclude=%s curl*' % excludepkg) + self.dnf_with_repo('install -y --exclude=%s --exclude=curl-staticdev curl*' % excludepkg) #check curl-dev is not installed after being excluded status, output = self.target.run('dnf list --installed | grep %s'% excludepkg , 1500) self.assertEqual(1, status, "%s was not excluded, is listed as installed"%excludepkg) |