From 56ba1d0e428fc99d680925816c1bed99126eddc0 Mon Sep 17 00:00:00 2001 From: Vaibhav Gupta Date: Thu, 3 Aug 2017 10:19:03 +0530 Subject: [PATCH] Replace getfuncargvalue by getfixturevalue --- tardis/plasma/tests/test_partition_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tardis/plasma/tests/test_partition_function.py b/tardis/plasma/tests/test_partition_function.py index 98390a61dfd..4668751c170 100644 --- a/tardis/plasma/tests/test_partition_function.py +++ b/tardis/plasma/tests/test_partition_function.py @@ -15,6 +15,6 @@ def read_hdf_attr(fname, attr): @pytest.mark.parametrize('arg', partition_properties) def test_partition_properties(arg, ref_data_path, request): - actual = request.getfuncargvalue(arg) + actual = request.getfixturevalue(arg) expected = read_hdf_attr(ref_data_path, arg) pdt.assert_almost_equal(actual, expected)