Skip to content

Commit

Permalink
Replace getfuncargvalue by getfixturevalue
Browse files Browse the repository at this point in the history
  • Loading branch information
vg3095 committed Aug 3, 2017
1 parent 561453d commit 56ba1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/plasma/tests/test_partition_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 56ba1d0

Please sign in to comment.