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})