update unit test to match new basis for y case

This commit is contained in:
yardasol 2022-04-05 10:16:11 -05:00
parent a289cb7397
commit c1008a0d0f

View file

@ -155,7 +155,7 @@ def test_cone_one_sided(axis, point_pos, point_neg, ll_true):
@pytest.mark.parametrize(
"axis, plane_tb, plane_lr, axis_idx", [
("x", "Z", "Y", 0),
("y", "Z", "X", 1),
("y", "X", "Z", 1),
("z", "Y", "X", 2),
]
)