commit/galaxy-central: davebgx: Fix for retrieving job streams with the twill interactor.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3b29b6f83d17/ Changeset: 3b29b6f83d17 User: davebgx Date: 2014-05-12 22:27:49 Summary: Fix for retrieving job streams with the twill interactor. Affected #: 1 file diff -r 246b419fc92a91f31eb7cdd5e2de4a4c15a4b631 -r 3b29b6f83d17ed07d2c3ea49d839b29d66cad580 test/base/interactor.py --- a/test/base/interactor.py +++ b/test/base/interactor.py @@ -386,7 +386,8 @@ self.twill_test_case.verify_dataset_correctness( outfile, hid=hid, attributes=attributes, shed_tool_id=shed_tool_id, maxseconds=maxseconds ) def get_job_stream( self, history_id, output_data, stream ): - return self.twill_test_case._get_job_stream_output( output_data.get( 'id' ), stream=stream, format=False ) + encoded_id = self.twill_test_case.security.encode_id( output_data.get( 'id' ) ) + return self.twill_test_case._get_job_stream_output( encoded_id, stream=stream, format=False ) def stage_data_async( self, test_data, history, shed_tool_id, async=True ): name = test_data.get( 'name', None ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org