Skip to content

Commit

Permalink
fix test case maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Oct 12, 2023
1 parent a762ba7 commit 79f2d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models/test_base_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def test_complex_onsets(self):
{3.5: [0, 1], 4.0: [2], 4.4: [3, 4], -1.0: [5]})

def test_empty_and_single_item_series(self):
self.assertTrue(BaseInput._filter_by_index_list(pd.Series([]), {}).equals(pd.Series([])))
self.assertTrue(BaseInput._filter_by_index_list(pd.Series([], dtype=str), {}).equals(pd.Series([], dtype=str)))
self.assertTrue(BaseInput._filter_by_index_list(pd.Series(["apple"]), {0: [0]}).equals(pd.Series(["apple"])))

def test_two_item_series_with_same_onset(self):
Expand Down

0 comments on commit 79f2d83

Please sign in to comment.