File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -884,7 +884,6 @@ def assert_series_equal(
884884 Whether to check the Series dtype is identical.
885885 check_dtype : bool, if False
886886 Whether to check the series is equal or not if dtype is
887- False. (#GH #61473)
888887 check_index_type : bool or {'equiv'}, default 'equiv'
889888 Whether to check the Index class, dtype and inferred_type
890889 are identical.
@@ -1030,7 +1029,7 @@ def assert_series_equal(
10301029 assert_attr_equal ("dtype" , left , right , obj = f"Attributes of { obj } " )
10311030
10321031 if not check_dtype and (left .dtype != right .dtype ):
1033- # checks only when check_dtype is False
1032+ # checks only when check_dtype is False #GH #61473
10341033 lv , rv = left ._values , right ._values
10351034 lv = np .asarray (lv , dtype = object )
10361035 rv = np .asarray (rv , dtype = object )
You can’t perform that action at this time.
0 commit comments