Merge pull request #456 from maxamillion/tests/fix_sysctl_failures

fix sysctl integration test failing on newer versions of core

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

fix sysctl integration test failing on newer versions of core

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


ISSUE TYPE


Bugfix Pull Request

COMPONENT NAME

sysctl
This commit is contained in:
softwarefactory-project-zuul[bot] 2023-05-10 14:18:34 +00:00 committed by GitHub
commit ae0380d671
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -0,0 +1,3 @@
---
bugfixes:
- "Fix sysctl integration test failing on newer versions of core. Previously NoneType was allowable, now it fails to convert to a str type."

View File

@ -170,7 +170,7 @@
- name: Try sysctl with no name
sysctl:
name:
name: ""
value: 1
sysctl_set: yes
ignore_errors: True
@ -180,7 +180,7 @@
assert:
that:
- 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
sysctl: