Skip to content

Commit 24ccae7

Browse files
authored
Fixed broken import in assert_frame_equal docs snippet (pandas-dev#43779)
1 parent 9f5c749 commit 24ccae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_testing/asserters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ def assert_frame_equal(
12031203
This example shows comparing two DataFrames that are equal
12041204
but with columns of differing dtypes.
12051205
1206-
>>> from pandas._testing import assert_frame_equal
1206+
>>> from pandas.testing import assert_frame_equal
12071207
>>> df1 = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
12081208
>>> df2 = pd.DataFrame({'a': [1, 2], 'b': [3.0, 4.0]})
12091209

0 commit comments

Comments
 (0)