ansible-test: fix dpkg_selections on Ubuntu 18.04 (#50915)
This commit is contained in:
parent
7b4bc572de
commit
a54eb58156
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue