Skip to content

Commit c6d645c

Browse files
author
Philipp Kaniuth
committed
adapted unit tests
1 parent da6a6f8 commit c6d645c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frrsa/tests/test_predictor_distance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_empty(self):
2121
hadamard_prod, first_pair_idx, second_pair_idx = hadamard(np.array([]))
2222

2323
def test_not_enough_columns(self):
24-
with self.assertRaisesRegex(Exception, 'Predictor needs at least 2 columns2'):
24+
with self.assertRaisesRegex(Exception, 'Predictor needs at least 2 columns.'):
2525
hadamard_prod, first_pair_idx, second_pair_idx = hadamard(np.array([[1], [2]]))
2626

2727
def test_no_matrix(self):

0 commit comments

Comments
 (0)