summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/selftest/cases/updater.py
diff options
context:
space:
mode:
authorlbonn <lbonn@users.noreply.github.com>2018-09-18 10:31:28 +0200
committerGitHub <noreply@github.com>2018-09-18 10:31:28 +0200
commitae02ae957a6e094b822d747b3a001a3a8c8845ed (patch)
treee063663e4e508a604025b16d6796391e000a8040 /lib/oeqa/selftest/cases/updater.py
parentd19a74303fb573526bc604c7da94daed11883494 (diff)
parentb62aa4caee97bc12749a83cb271d2b46d203cdaa (diff)
downloadmeta-updater-ae02ae957a6e094b822d747b3a001a3a8c8845ed.tar.gz
Merge pull request #390 from advancedtelematic/fix/new-installed-versions-import
Update `installed_versions` passing to new location
Diffstat (limited to 'lib/oeqa/selftest/cases/updater.py')
-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 1c5a1dc..a3fe407 100644
--- a/lib/oeqa/selftest/cases/updater.py
+++ b/lib/oeqa/selftest/cases/updater.py
@@ -226,8 +226,8 @@ class ManualControlTests(OESelftestTestCase):
226 Disable the systemd service then run aktualizr manually 226 Disable the systemd service then run aktualizr manually
227 """ 227 """
228 sleep(20) 228 sleep(20)
229 stdout, stderr, retcode = self.qemu_command('aktualizr-info --allow-migrate') 229 stdout, stderr, retcode = self.qemu_command('aktualizr-info')
230 self.assertIn(b'Fetched metadata: no', stdout, 230 self.assertIn(b'Can\'t open database', stdout,
231 'Aktualizr should not have run yet' + stderr.decode() + stdout.decode()) 231 'Aktualizr should not have run yet' + stderr.decode() + stdout.decode())
232 232
233 stdout, stderr, retcode = self.qemu_command('aktualizr --running-mode=once') 233 stdout, stderr, retcode = self.qemu_command('aktualizr --running-mode=once')