Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Marshal deprecated pandas.util.testing import. #922

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion influxdb/tests/dataframe_client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@

if not using_pypy:
import pandas as pd
from pandas.util.testing import assert_frame_equal
try:
from pandas.testing import assert_frame_equal
except ImportError:
from pandas.util.testing import assert_frame_equal
from influxdb import DataFrameClient
import numpy as np

Expand Down