We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd6f0e commit 184a8beCopy full SHA for 184a8be
1 file changed
deeptrack/tests/test_features.py
@@ -2449,10 +2449,11 @@ def calculate_min_distance(positions):
2449
# print(f"Min distance after: {min_distance_after}, should be larger \
2450
# than {2*radius + min_distance} with some tolerance")
2451
2452
- # Assert that the non-overlapping case respects min_distance (with
+ # Assert that the non-overlapping case respects min_distance (with
2453
# slight rounding tolerance)
2454
- self.assertLess(min_distance_before, 2*radius + min_distance)
2455
- self.assertGreaterEqual(min_distance_after,2*radius + min_distance - 2)
+ self.assertLess(min_distance_before, 2 * radius + min_distance)
+ self.assertGreaterEqual(min_distance_after,
2456
+ 2 * radius + min_distance - 2)
2457
2458
2459
def test_Store(self):
0 commit comments