Skip to content

Commit b8a7530

Browse files
authored
Correct assert_frame_equal doc string
Correct default values in assert_frame_equal
1 parent 98fb53c commit b8a7530

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/util/testing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1314,10 +1314,10 @@ def assert_frame_equal(left, right, check_dtype=True,
13141314
right : DataFrame
13151315
check_dtype : bool, default True
13161316
Whether to check the DataFrame dtype is identical.
1317-
check_index_type : bool / string {'equiv'}, default False
1317+
check_index_type : bool / string {'equiv'}, default 'equiv'
13181318
Whether to check the Index class, dtype and inferred_type
13191319
are identical.
1320-
check_column_type : bool / string {'equiv'}, default False
1320+
check_column_type : bool / string {'equiv'}, default 'equiv'
13211321
Whether to check the columns class, dtype and inferred_type
13221322
are identical.
13231323
check_frame_type : bool, default False

0 commit comments

Comments
 (0)