From e18de3f396e6d6cb4c0b4d93f18e2bb3daf07ce7 Mon Sep 17 00:00:00 2001 From: Stanislav German-Evtushenko Date: Sat, 19 Jun 2021 18:46:13 +0900 Subject: [PATCH] Revert "Do not check "install_gem_result is changed" for ansible develop on openSUSE" This reverts commit 48ecb27889a6d86b91eb70a5b1432a5649846b99. --- tests/integration/targets/gem/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/targets/gem/tasks/main.yml b/tests/integration/targets/gem/tasks/main.yml index 1519419924..0771216983 100644 --- a/tests/integration/targets/gem/tasks/main.yml +++ b/tests/integration/targets/gem/tasks/main.yml @@ -196,7 +196,7 @@ - name: Ensure gem executable was installed in custom directory assert: that: - - install_gem_result is changed or (ansible_version == 'develop' and ansible_distribution == 'openSUSE Leap') + - install_gem_result is changed - gem_bindir_stat.stat.exists and gem_bindir_stat.stat.isreg - name: Remove gem with custom bindir @@ -215,5 +215,5 @@ - name: Ensure gem executable was removed from custom directory assert: that: - - install_gem_result is changed or (ansible_version == 'develop' and ansible_distribution == 'openSUSE Leap') + - install_gem_result is changed - not gem_bindir_stat.stat.exists