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:
parent
b3ef2c928a
commit
29ad847544
@ -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 + '…'}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user