mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Merge pull request #234 from chrismeyersfsu/fix-stdout_msg
changed stdout pending wording
This commit is contained in:
commit
57ab33b328
@ -611,7 +611,7 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
|
||||
job's result.
|
||||
"""
|
||||
msg = {
|
||||
'pending': 'stdout capture pending',
|
||||
'pending': 'Waiting for results...',
|
||||
'missing': 'stdout capture is missing',
|
||||
}
|
||||
if self.result_stdout_text:
|
||||
|
||||
@ -49,5 +49,5 @@ class UnifiedJobsUnitTest(SimpleTestCase):
|
||||
result = unified_job.result_stdout_raw_handle()
|
||||
|
||||
self.assertIsInstance(result, StringIO)
|
||||
self.assertEqual(result.read(), 'stdout capture pending')
|
||||
self.assertEqual(result.read(), 'Waiting for results...')
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user