mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 19:21:06 -03:30
Merge pull request #234 from chrismeyersfsu/fix-stdout_msg
changed stdout pending wording
This commit is contained in:
@@ -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...')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user