Skip to content

Commit

Permalink
fixing dtype for empty segments test
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Schmitt committed May 7, 2024
1 parent da4d433 commit 187fe10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_segment.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def process_func(x, sr):
pd.testing.assert_series_equal(result, expected_series)

table_df = pd.DataFrame([0], index, columns=["col"])
expected_df = pd.DataFrame([], expected, columns=["col"])
expected_df = pd.DataFrame([], expected, columns=["col"], dtype=np.int64)
result = segment.process_table(table_df)
pd.testing.assert_frame_equal(result, expected_df)

Expand Down

0 comments on commit 187fe10

Please sign in to comment.