Skip to content

Commit 6391f3f

Browse files
committed
fix function call
1 parent 4fc892e commit 6391f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/tests/test_optional/test_figure_factory/test_figure_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4313,7 +4313,7 @@ class TestHexbinMapbox(NumpyTestUtilsMixin, TestCaseNoTemplate):
43134313
def assert_dict_equal(self, dict1, dict2, decimal=7):
43144314
for k, v in dict1.items():
43154315
if isinstance(v, dict):
4316-
assert_dict_almost_equal(v, dict2[k], decimal=decimal)
4316+
assert_dict_equal(self, v, dict2[k], decimal=decimal)
43174317
elif isinstance(v, float):
43184318
np.testing.assert_almost_equal(v, dict2[k], decimal=decimal)
43194319
else:

0 commit comments

Comments
 (0)