diff --git a/bioblend/_tests/TestGalaxyDatasets.py b/bioblend/_tests/TestGalaxyDatasets.py index 0285bd5fb..d399ea715 100644 --- a/bioblend/_tests/TestGalaxyDatasets.py +++ b/bioblend/_tests/TestGalaxyDatasets.py @@ -36,7 +36,7 @@ def test_download_dataset(self): try: downloaded_dataset = self.gi.datasets.download_dataset( self.dataset_id, file_path=tempdir, - maxwait=GalaxyTestBase.BIOBLEND_TEST_JOB_TIMEOUT) + maxwait=GalaxyTestBase.BIOBLEND_TEST_JOB_TIMEOUT * 2) self.assertTrue(downloaded_dataset.startswith(tempdir)) with open(downloaded_dataset, 'rb') as f: self.assertEqual(f.read(), expected_contents)