Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <ab93@users.noreply.github.com>
  • Loading branch information
ab93 committed Jul 25, 2023
1 parent 2196fc6 commit 777d451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models/test_threshold.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_score_samples(self):
clf = MahalanobisThreshold()
clf.fit(self.x_train)
y = clf.score_samples(self.x_test)
self.assertTupleEqual(self.x_test.shape, y.shape)
self.assertTupleEqual((self.x_test.shape[0],), y.shape)

def test_score_samples_err(self):
clf = MahalanobisThreshold()
Expand Down

0 comments on commit 777d451

Please sign in to comment.