Skip to content

Commit

Permalink
removing unused testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneding committed May 21, 2021
1 parent c06be48 commit 4861e9a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions python/cudf/cudf/tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -8636,16 +8636,3 @@ def test_is_homogeneous_multiindex(data, indexes, expected):
actual = cudf.DataFrame(test_dataframe)._is_homogeneous

assert actual == expected


"""
({"a": [1, 2, 3], "b": [4, 5, 6], "c": [7, 8, 9]}, True),
({"a": ["a", "b", "c"], "b": [4, 5, 6], "c": [7, 8, 9]}, False),
({"a": [True, False, False], "b": [False, False, True]}, True),
({"a": [True, False, False]}, True),
({"a": [[1,2],[3,4]]}, True),
({'a': [[1,2], [3,4]], 'b': ["a", "b"]}, False),
({'a': [{'c':5} , {'e': 5}], 'b': [{'c':5} , {'g': 7}]}, True),
({}, True),
"""

0 comments on commit 4861e9a

Please sign in to comment.