Skip to content

Commit

Permalink
Replace deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
arie-matsliah committed Feb 14, 2024
1 parent d556cc1 commit a89c8a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_neuron_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def test_similar_embeddings(self):
def assertAlmostEqualDicts(dct1, dct2):
self.assertEqual(set(dct1.keys()), set(dct2.keys()))
for k1, v1 in dct1.items():
self.assertAlmostEquals(v1, dct2[k1])
self.assertAlmostEqual(v1, dct2[k1])

cell_rid = 720575940639310150
assertAlmostEqualDicts(
Expand Down

0 comments on commit a89c8a4

Please sign in to comment.