fix sysctl integration test failing on newer versions of core

Previously NoneType was allowable, now it fails to convert to a str
type.

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2023-05-05 11:59:04 -05:00
parent 202609e425
commit 07f1e11015

View file

@ -170,7 +170,7 @@
- name: Try sysctl with no name - name: Try sysctl with no name
sysctl: sysctl:
name: name: ""
value: 1 value: 1
sysctl_set: yes sysctl_set: yes
ignore_errors: True ignore_errors: True
@ -180,7 +180,7 @@
assert: assert:
that: that:
- sysctl_no_name is failed - sysctl_no_name is failed
- "sysctl_no_name.msg == 'name cannot be None'" - "sysctl_no_name.msg == 'name cannot be blank'"
- name: Try sysctl with no value - name: Try sysctl with no value
sysctl: sysctl: