From 60380a472429e39b0d3b3d033071d2d8eeaf708b Mon Sep 17 00:00:00 2001 From: kshea21 Date: Tue, 7 Jan 2025 10:58:52 -0800 Subject: [PATCH] untest -> test --- lib/spack/spack/test/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/spack/spack/test/installer.py b/lib/spack/spack/test/installer.py index 95c26704b1d..97a7e129d1c 100644 --- a/lib/spack/spack/test/installer.py +++ b/lib/spack/spack/test/installer.py @@ -989,7 +989,7 @@ def _install_fail_my_build_exception(installer, task, install_status, **kwargs): else: # No need for more complex logic here because no splices print("starting process for {task.pkg.name}") - task.start(install_status) + task.start_task(task) installer._update_installed(task) @@ -1008,7 +1008,7 @@ def test_install_fail_single(install_mockery, mock_fetch, monkeypatch): assert not any(pkg_id.startswith("pkg-a-") for pkg_id in installer.installed) -def untest_install_fail_multi(install_mockery, mock_fetch, monkeypatch): +def test_install_fail_multi(install_mockery, mock_fetch, monkeypatch): """Test expected results for failure of multiple packages.""" installer = create_installer(["pkg-a", "pkg-c"], {"fake": True})