mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 23:16:01 -03:30
changed stdout pending wording
This commit is contained in:
@@ -611,7 +611,7 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
|
|||||||
job's result.
|
job's result.
|
||||||
"""
|
"""
|
||||||
msg = {
|
msg = {
|
||||||
'pending': 'stdout capture pending',
|
'pending': 'Waiting for results...',
|
||||||
'missing': 'stdout capture is missing',
|
'missing': 'stdout capture is missing',
|
||||||
}
|
}
|
||||||
if self.result_stdout_text:
|
if self.result_stdout_text:
|
||||||
|
|||||||
@@ -49,5 +49,5 @@ class UnifiedJobsUnitTest(SimpleTestCase):
|
|||||||
result = unified_job.result_stdout_raw_handle()
|
result = unified_job.result_stdout_raw_handle()
|
||||||
|
|
||||||
self.assertIsInstance(result, StringIO)
|
self.assertIsInstance(result, StringIO)
|
||||||
self.assertEqual(result.read(), 'stdout capture pending')
|
self.assertEqual(result.read(), 'Waiting for results...')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user