ansible-test: fix dpkg_selections on Ubuntu 18.04 (#50915)

pull/50916/head
Jordan Borean 6 years ago committed by GitHub
parent 7b4bc572de
commit a54eb58156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,7 +30,7 @@
- name: ensure hello was not upgraded
assert:
that:
- "{{ hello_version.stdout }} == {{ hello_old_version }}"
- hello_version.stdout == hello_old_version
- name: remove version freeze
dpkg_selections:
@ -49,7 +49,7 @@
- name: check that old version upgraded correctly
assert:
that:
- "{{ hello_version.stdout }}!={{ hello_old_version }}"
- hello_version.stdout != hello_old_version
- name: set hello to deinstall
dpkg_selections:

Loading…
Cancel
Save