We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea9f9e commit 6a6e92eCopy full SHA for 6a6e92e
tests/unit/test_json.py
@@ -15,7 +15,6 @@
15
16
import numpy as np
17
import pandas as pd
18
-import pandas._testing as tm
19
import pytest
20
21
import db_dtypes
@@ -90,7 +89,7 @@ def test_to_numpy():
90
89
expected = np.asarray(data)
91
92
result = data.to_numpy()
93
- tm.assert_equal(result, expected)
+ pd._testing.assert_equal(result, expected)
94
95
result = pd.Series(data).to_numpy()
96
0 commit comments