mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Removing non-ascii logging test for now
This commit is contained in:
parent
010e145efa
commit
701af19fad
1 changed files with 15 additions and 15 deletions
|
@ -392,21 +392,21 @@ class TestPlaybook(unittest.TestCase):
|
|||
|
||||
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
|
||||
|
||||
def test_playbook_logging_non_ascii(self):
|
||||
pb = 'test/playbook-logging-non-ascii.yml'
|
||||
actual = self._run(pb)
|
||||
|
||||
expected = {
|
||||
"localhost": {
|
||||
"changed": 3,
|
||||
"failures": 0,
|
||||
"ok": 3,
|
||||
"skipped": 0,
|
||||
"unreachable": 0
|
||||
}
|
||||
}
|
||||
|
||||
assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True)
|
||||
#def test_playbook_logging_non_ascii(self):
|
||||
# pb = 'test/playbook-logging-non-ascii.yml'
|
||||
# actual = self._run(pb)
|
||||
#
|
||||
# expected = {
|
||||
# "localhost": {
|
||||
# "changed": 3,
|
||||
# "failures": 0,
|
||||
# "ok": 3,
|
||||
# "skipped": 0,
|
||||
# "unreachable": 0
|
||||
# }
|
||||
# }
|
||||
#
|
||||
# assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True)
|
||||
|
||||
|
||||
# Disabled for now as there are permissions issues that happen if you are not the owner that created files
|
||||
|
|
Loading…
Reference in a new issue