Skip to content

Commit

Permalink
fix deprecated test warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed May 30, 2016
1 parent 609a2b4 commit ab5ea87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jubakit/test/test_anomaly.py
Expand Up @@ -66,5 +66,5 @@ def test_default(self):

def test_method_param(self):
self.assertTrue(Config(method='lof')['parameter']['ignore_kth_same_point'])
self.assertEquals('inverted_index_euclid', Config(method='lof')['parameter']['method'])
self.assertEquals('euclid_lsh', Config(method='light_lof')['parameter']['method'])
self.assertEqual('inverted_index_euclid', Config(method='lof')['parameter']['method'])
self.assertEqual('euclid_lsh', Config(method='light_lof')['parameter']['method'])

0 comments on commit ab5ea87

Please sign in to comment.