Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6a6e92e

Browse files
committedNov 6, 2024·
fixing import error in python 3.7
1 parent 1ea9f9e commit 6a6e92e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎tests/unit/test_json.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
import numpy as np
1717
import pandas as pd
18-
import pandas._testing as tm
1918
import pytest
2019

2120
import db_dtypes
@@ -90,7 +89,7 @@ def test_to_numpy():
9089
expected = np.asarray(data)
9190

9291
result = data.to_numpy()
93-
tm.assert_equal(result, expected)
92+
pd._testing.assert_equal(result, expected)
9493

9594
result = pd.Series(data).to_numpy()
96-
tm.assert_equal(result, expected)
95+
pd._testing.assert_equal(result, expected)

0 commit comments

Comments
 (0)
Please sign in to comment.