summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/dnf.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/dnf.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/dnf.py2
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 77e7eb9450..59a263dc63 100644
--- a/meta/lib/oeqa/runtime/cases/dnf.py
+++ b/meta/lib/oeqa/runtime/cases/dnf.py
@@ -12,7 +12,7 @@ from oeqa.runtime.decorator.package import OEHasPackage
12class DnfTest(OERuntimeTestCase): 12class DnfTest(OERuntimeTestCase):
13 13
14 def dnf(self, command, expected = 0): 14 def dnf(self, command, expected = 0):
15 command = 'dnf-2 %s' % command 15 command = 'dnf %s' % command
16 status, output = self.target.run(command, 1500) 16 status, output = self.target.run(command, 1500)
17 message = os.linesep.join([command, output]) 17 message = os.linesep.join([command, output])
18 self.assertEqual(status, expected, message) 18 self.assertEqual(status, expected, message)