Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tliu68 committed Aug 24, 2021
1 parent 8110caf commit 0c998d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cluster/test_autogmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def test_two_class(self):
# Asser that we get perfect clustering
assert_allclose(AutoGMM.ari_, 1)

def test_two_class_multiple_kmeans_inits():
def test_two_class_multiple_kmeans_inits(self):
"""
Easily separable two gaussian problem.
"""
Expand All @@ -250,7 +250,7 @@ def test_two_class_multiple_kmeans_inits():
# Asser that we get perfect clustering
assert_allclose(AutoGMM.ari_, 1)

def test_two_class_parallel():
def test_two_class_parallel(self):
"""
Easily separable two gaussian problem.
"""
Expand Down

0 comments on commit 0c998d5

Please sign in to comment.