remove ansible 2.4-specific test

This commit is contained in:
Steven Robertson 2020-09-06 15:08:56 -07:00
parent fbb92e461f
commit b26a636bba
1 changed files with 1 additions and 10 deletions

View File

@ -148,16 +148,7 @@
custom_python_detect_environment:
register: out
# v2.6 related: https://github.com/ansible/ansible/pull/39833
- name: "Verify modules get the same tmpdir as the action plugin (<2.5)"
when: ansible_version.full < '2.5'
assert:
that:
- out.module_path.startswith(good_temp_path2)
- out.module_tmpdir == None
- name: "Verify modules get the same tmpdir as the action plugin (>2.5)"
when: ansible_version.full > '2.5'
- name: "Verify modules get the same tmpdir as the action plugin"
assert:
that:
- out.module_path.startswith(good_temp_path2)