diff --git a/docs/userguide/plugins.rst b/docs/userguide/plugins.rst index 7d1eb81685..cd9244960c 100644 --- a/docs/userguide/plugins.rst +++ b/docs/userguide/plugins.rst @@ -101,5 +101,6 @@ interpreted as a Future. Removed interfaces ------------------ -Parsl had a ``Channel`` interface which was removed in 2024. See -`issue 3515 `_ for further discussion. +Parsl had a deprecated ``Channel`` abstraction. See +`issue 3515 `_ +for further discussion on its removal. diff --git a/parsl/tests/test_providers/test_pbspro_template.py b/parsl/tests/test_providers/test_pbspro_template.py index 1264731120..ed8ef8e4a2 100644 --- a/parsl/tests/test_providers/test_pbspro_template.py +++ b/parsl/tests/test_providers/test_pbspro_template.py @@ -14,6 +14,7 @@ def test_submit_script_basic(tmp_path): queue="debug" ) provider.script_dir = tmp_path + provider.channel.script_dir = tmp_path job_id = str(random.randint(55000, 59000)) provider.execute_wait = mock.Mock(spec=PBSProProvider.execute_wait) provider.execute_wait.return_value = (0, job_id, "") diff --git a/parsl/tests/test_providers/test_slurm_template.py b/parsl/tests/test_providers/test_slurm_template.py index 55074fefe3..5c36026bfb 100644 --- a/parsl/tests/test_providers/test_slurm_template.py +++ b/parsl/tests/test_providers/test_slurm_template.py @@ -15,6 +15,7 @@ def test_submit_script_basic(tmp_path): partition="debug" ) provider.script_dir = tmp_path + provider.channel.script_dir = tmp_path job_id = str(random.randint(55000, 59000)) provider.execute_wait = mock.MagicMock(spec=SlurmProvider.execute_wait) provider.execute_wait.return_value = (0, f"Submitted batch job {job_id}", "")