Skip to content

Commit

Permalink
rename test function
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Parente <[email protected]>
  • Loading branch information
nparent1 committed Sep 6, 2024
1 parent c7229ee commit 744699e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/toporder/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ def test_kernel_width_when_zero_median_pairwise_distances():
arr[1] = 1
assert kernel_width(arr) == 1

def test_kernel_width_when_constant_pairwise_distances():
def test_kernel_width_when_all_zero_pairwise_distances():
arr = np.ones((100, 1), dtype=np.int64)
assert kernel_width(arr) == 1

0 comments on commit 744699e

Please sign in to comment.