commit/galaxy-central: jmchilton: Fix Python 2.7ism in test_evaluation.py.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0a35b2884415/ Changeset: 0a35b2884415 User: jmchilton Date: 2014-02-21 21:57:09 Summary: Fix Python 2.7ism in test_evaluation.py. Affected #: 1 file diff -r c5be84ef148e7866bfe31610cea5c9f1bae09fe0 -r 0a35b28844159fd534e49bbb71c0ab00c4dfb367 test/unit/tools/test_evaluation.py --- a/test/unit/tools/test_evaluation.py +++ b/test/unit/tools/test_evaluation.py @@ -168,7 +168,7 @@ if "new_file_path" not in kwds: kwds[ "new_file_path" ] = self.app.config.new_file_path self.evaluator.set_compute_environment( TestComputeEnviornment( **kwds ) ) - self.assertIn( "exec_before_job", self.tool.hooks_called ) + assert "exec_before_job" in self.tool.hooks_called def _setup_test_bwa_job( self ): self.job.input_datasets = [ self._job_dataset( 'input1', '/galaxy/files/dataset_1.dat' ) ] 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