From b107b6264fa97facdd6efe874a10678bfca1e0fb Mon Sep 17 00:00:00 2001 From: BryanRacic Date: Tue, 28 Sep 2021 00:41:33 -0400 Subject: [PATCH] Fixed broken import in assert_frame_equal docs snippet --- pandas/_testing/asserters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_testing/asserters.py b/pandas/_testing/asserters.py index 79c8e64fc4df3..fc7e36dda4619 100644 --- a/pandas/_testing/asserters.py +++ b/pandas/_testing/asserters.py @@ -1203,7 +1203,7 @@ def assert_frame_equal( This example shows comparing two DataFrames that are equal but with columns of differing dtypes. - >>> from pandas._testing import assert_frame_equal + >>> from pandas.testing import assert_frame_equal >>> df1 = pd.DataFrame({'a': [1, 2], 'b': [3, 4]}) >>> df2 = pd.DataFrame({'a': [1, 2], 'b': [3.0, 4.0]})