Skip to content

Commit

Permalink
Remove deprecated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 11, 2021
1 parent 66e2d33 commit ad894fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion holoviews/element/comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ def compare_tables(cls, el1, el2, msg='Table'):

@classmethod
def compare_dataframe(cls, df1, df2, msg='DFrame'):
from pandas.util.testing import assert_frame_equal
from pandas.testing import assert_frame_equal
try:
assert_frame_equal(df1, df2)
except AssertionError as e:
Expand Down
4 changes: 1 addition & 3 deletions holoviews/tests/element/testtiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ def test_pandas_series(self):
self.check_array_type_preserved(
pd.Series, pd.Series,
lambda a, b: pd.testing.assert_series_equal(
a, b, check_exact=False, check_less_precise=True,
a, b, check_exact=False,
)
)


0 comments on commit ad894fb

Please sign in to comment.