diff --git a/tests/pfwtest.py b/tests/pfwtest.py index 5214fcb..4fa95e9 100644 --- a/tests/pfwtest.py +++ b/tests/pfwtest.py @@ -51,7 +51,7 @@ def check_injected_python_installed(request): if len(procparams) != 1: raise ValueError("Could not find the fixture name of the injected python") procparam = procparams[0] - proc = request.getfuncargvalue(procparam) + proc = request.getfixturevalue(procparam) if not python_is_installed[proc.bitness]: pytest.skip("Python {0}b not installed -> skipping test with python injection into {0}b process".format(proc.bitness)) return None