Skip to content

Commit 0f25426

Browse files
jbrockmendelgfyoung
authored andcommitted
Fix apparent typo in tests (#17247)
1 parent 0fafd4f commit 0f25426

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/indexes/datetimes/test_tools.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1112,9 +1112,9 @@ def test_parsers(self):
11121112
result3 = Timestamp('NaT')
11131113
result4 = DatetimeIndex(['NaT'])[0]
11141114
assert result1 is tslib.NaT
1115-
assert result1 is tslib.NaT
1116-
assert result1 is tslib.NaT
1117-
assert result1 is tslib.NaT
1115+
assert result2 is tslib.NaT
1116+
assert result3 is tslib.NaT
1117+
assert result4 is tslib.NaT
11181118

11191119
def test_parsers_quarter_invalid(self):
11201120

0 commit comments

Comments
 (0)