Skip to content

Commit 1b83547

Browse files
Align CDF property names with repaired R output
1 parent 49da5e7 commit 1b83547

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/property/test_cdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ def test_nns_cdf_multivariate_shape_properties(
5252
function = cast(dict[str, np.ndarray], result["Function"])
5353

5454
assert function["CDF"].shape == (rows,)
55-
assert list(function) == [*(f"V{index + 1}" for index in range(cols)), "CDF"]
55+
assert list(function) == [*(str(index + 1) for index in range(cols)), "CDF"]

0 commit comments

Comments
 (0)