mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 15:58:45 -03:30
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:
@@ -57,5 +57,5 @@ def test_really_long_event_fields(field):
|
|||||||
})
|
})
|
||||||
manager.create.assert_called_with(**{
|
manager.create.assert_called_with(**{
|
||||||
'job_id': 123,
|
'job_id': 123,
|
||||||
'event_data': {field: 'X' * 1021 + '...'}
|
'event_data': {field: 'X' * 1023 + '…'}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user