summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/oeqa/selftest/cases/updater.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py
index 228b8a6..fd37e85 100644
--- a/lib/oeqa/selftest/cases/updater.py
+++ b/lib/oeqa/selftest/cases/updater.py
@@ -210,7 +210,7 @@ class ManualControlTests(OESelftestTestCase):
210 def qemu_command(self, command): 210 def qemu_command(self, command):
211 return qemu_send_command(self.qemu.ssh_port, command) 211 return qemu_send_command(self.qemu.ssh_port, command)
212 212
213 def test_manual_running_mode_once(self): 213 def test_manual_run_mode_once(self):
214 """ 214 """
215 Disable the systemd service then run aktualizr manually 215 Disable the systemd service then run aktualizr manually
216 """ 216 """
@@ -219,7 +219,7 @@ class ManualControlTests(OESelftestTestCase):
219 self.assertIn(b'Can\'t open database', stdout, 219 self.assertIn(b'Can\'t open database', stdout,
220 'Aktualizr should not have run yet' + stderr.decode() + stdout.decode()) 220 'Aktualizr should not have run yet' + stderr.decode() + stdout.decode())
221 221
222 stdout, stderr, retcode = self.qemu_command('aktualizr --running-mode=once') 222 stdout, stderr, retcode = self.qemu_command('aktualizr once')
223 223
224 stdout, stderr, retcode = self.qemu_command('aktualizr-info') 224 stdout, stderr, retcode = self.qemu_command('aktualizr-info')
225 self.assertIn(b'Fetched metadata: yes', stdout, 225 self.assertIn(b'Fetched metadata: yes', stdout,