untest -> test

This commit is contained in:
kshea21 2025-01-07 10:58:52 -08:00 committed by Gregory Becker
parent 03a3546f14
commit 60380a4724
No known key found for this signature in database
GPG Key ID: 2362541F6D14ED84

View File

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