1
0
Fork 0
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:
James Cammarata 2014-02-20 12:48:16 -05:00
parent 010e145efa
commit 701af19fad

View file

@ -392,21 +392,21 @@ class TestPlaybook(unittest.TestCase):
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True) assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
def test_playbook_logging_non_ascii(self): #def test_playbook_logging_non_ascii(self):
pb = 'test/playbook-logging-non-ascii.yml' # pb = 'test/playbook-logging-non-ascii.yml'
actual = self._run(pb) # actual = self._run(pb)
#
expected = { # expected = {
"localhost": { # "localhost": {
"changed": 3, # "changed": 3,
"failures": 0, # "failures": 0,
"ok": 3, # "ok": 3,
"skipped": 0, # "skipped": 0,
"unreachable": 0 # "unreachable": 0
} # }
} # }
#
assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True) # 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 # Disabled for now as there are permissions issues that happen if you are not the owner that created files