Skip to content

Commit

Permalink
avoid string array error in test_series_are_serieslike (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Jul 25, 2024
1 parent 9c8f216 commit 179a7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/core/test_protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ def test_dataframes_match_protocols(protocol, device):

@pytest.mark.parametrize("device", _DEVICES)
def test_series_are_serieslike(device):
obj = make_series([], device=device)
obj = make_series([0], device=device)

assert isinstance(obj, SeriesLike)

0 comments on commit 179a7ca

Please sign in to comment.