Skip to content

Commit

Permalink
Deleted extra prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Illia-Kryvoviaz committed Jun 7, 2023
1 parent 7a85647 commit 29c53a0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_ot_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ def test_transform(self):
assert isinstance(d2_, np.ndarray), f"_transform must return ndarrays, got {type(d2_)}"
s1, s2 = np.sum(d1_), np.sum(d2_)
assert abs(s1 - s2) < 1e-6, f"_transform must return arrays with equal sums, got {s1} and {s2}"
print(dist)
print(dist_)
assert np.all(np.abs(dist - dist_)) < 1e-6, "_transform distance matrix not calculated correctly"

def test_ot_bias_scan(self):
Expand Down

0 comments on commit 29c53a0

Please sign in to comment.