1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

Deal with a change in truncation of strings in Django

which now uses a proper ellipsis character instead of 3 dots.
This commit is contained in:
Jeff Bradberry 2019-07-08 17:16:34 -04:00
parent b3ef2c928a
commit 29ad847544

View File

@ -57,5 +57,5 @@ def test_really_long_event_fields(field):
})
manager.create.assert_called_with(**{
'job_id': 123,
'event_data': {field: 'X' * 1021 + '...'}
'event_data': {field: 'X' * 1023 + ''}
})