From 92d42d1985906ba93e323d2731f61b6bb47dc560 Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Mon, 9 Dec 2024 23:59:43 +0000 Subject: [PATCH] Fix bug in test --- setuptools/tests/test_easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 586324be37..f7a39c8ca6 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -719,7 +719,7 @@ def test_setup_requires_override_nspkg(self, use_setup_cfg): # running the setup.py at all is sufficient run_setup(test_setup_py, ['--name']) except pkg_resources.VersionConflict: - self.fail( + pytest.fail( 'Installing setup.py requirements caused a VersionConflict' )