We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6559d commit 5c07a1aCopy full SHA for 5c07a1a
data_structures/kd_tree/tests/test_kdtree.py
@@ -8,7 +8,7 @@
8
9
10
@pytest.mark.parametrize(
11
- "num_points, cube_size, num_dimensions, depth, expected_result",
+ ("num_points", "cube_size", "num_dimensions", "depth", "expected_result"),
12
[
13
(0, 10.0, 2, 0, None), # Empty points list
14
(10, 10.0, 2, 2, KDNode), # Depth = 2, 2D points
0 commit comments