summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2019-01-15 14:37:20 +1000
committerMatt Clay <matt@mystile.com>2019-01-24 13:10:17 -0800
commit1b767d32e6f4254aa3b628d7071283ba1535b814 (patch)
tree7988ce6105390e9ac14d10a8fec45275863c8b9b
parentc8cab703afd3d6032d856e77e07e36a7e8b54e40 (diff)
downloadansible-1b767d32e6f4254aa3b628d7071283ba1535b814.tar.gz
ansible-test: fix dpkg_selections on Ubuntu 18.04 (#50915)
(cherry picked from commit a54eb58156ac9fb20df058f25936ff89a6b961a7)
-rw-r--r--test/integration/targets/dpkg_selections/tasks/dpkg_selections.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/dpkg_selections/tasks/dpkg_selections.yaml b/test/integration/targets/dpkg_selections/tasks/dpkg_selections.yaml
index 094225fd0f..5a46fcd95c 100644
--- a/test/integration/targets/dpkg_selections/tasks/dpkg_selections.yaml
+++ b/test/integration/targets/dpkg_selections/tasks/dpkg_selections.yaml
@@ -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: