Skip to content

Commit d4546ed

Browse files
committed
Remove unit tests
1 parent 2574403 commit d4546ed

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

pandas/tests/indexes/multi/test_util.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,6 @@ def test_datetimeindex(self):
2828
tm.assert_index_equal(result1, expected1)
2929
tm.assert_index_equal(result2, expected2)
3030

31-
def test_tzaware_retained(self):
32-
x = date_range("2000-01-01", periods=2, tz="US/Pacific")
33-
y = np.array([3, 4])
34-
result1, result2 = cartesian_product([x, y])
35-
36-
expected = x.repeat(2)
37-
tm.assert_index_equal(result1, expected)
38-
39-
def test_tzaware_retained_categorical(self):
40-
x = date_range("2000-01-01", periods=2, tz="US/Pacific").astype("category")
41-
y = np.array([3, 4])
42-
result1, result2 = cartesian_product([x, y])
43-
44-
expected = x.repeat(2)
45-
tm.assert_index_equal(result1, expected)
46-
4731
@pytest.mark.parametrize("x, y", [[[], []], [[0, 1], []], [[], ["a", "b", "c"]]])
4832
def test_empty(self, x, y):
4933
# product of empty factors

0 commit comments

Comments
 (0)