Skip to content

Commit d996cf6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a2f2bff commit d996cf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexes/interval/test_setops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_union_empty_result(self, closed, sort):
5555
tm.assert_index_equal(result, expected)
5656

5757
other = empty_index(dtype="uint64", closed=closed)
58-
expected = Index([], dtype='object')
58+
expected = Index([], dtype="object")
5959
result = index.union(other, sort=sort)
6060
tm.assert_index_equal(result, expected)
6161

@@ -118,7 +118,7 @@ def test_intersection_empty_result(self, closed, sort):
118118
tm.assert_index_equal(result, expected)
119119

120120
other = monotonic_index(300, 314, dtype="uint64", closed=closed)
121-
expected = Index([], dtype='object')
121+
expected = Index([], dtype="object")
122122
result = index.intersection(other, sort=sort)
123123
tm.assert_index_equal(result, expected)
124124

0 commit comments

Comments
 (0)