influxdata / influxdb-python

Python client for InfluxDB
MIT License
1.7k stars 521 forks source link

Marshal deprecated pandas.util.testing import. #922

Open bcrant opened 2 years ago

bcrant commented 2 years ago

Fixes warning generated by tests.

Attempts to import from pandas public API for newer versions of pandas... from pandas.testing import assert_frame_equal

...resolves to the existing path when not found... from pandas.util.testing import assert_frame_equal when not found

FutureWarning: pandas.util.testing is deprecated. Use the functions in the public API at pandas.testing instead.
    from pandas.util.testing import assert_frame_equal

Contributor checklist
bcrant commented 2 years ago

@aviau @xginn8 Any objections to this? Can we merge?