Skip to content

Commit

Permalink
Fix test_io.py test unit
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiggi committed Apr 2, 2024
1 parent 8fb56d3 commit 44b20ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disdrodb/tests/test_l0/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def test_read_l0a_dataframe(tmp_path):
list_df.append(df)

# Create concatenate dataframe
df_concatenate = pd.concat((list_df[0], list_df, list_df[0]), axis=0, ignore_index=True)
df_concatenate = pd.concat(list_df, axis=0, ignore_index=True)

# Drop duplicated values
df_concatenate = df_concatenate.drop_duplicates(subset="time")
Expand Down

0 comments on commit 44b20ed

Please sign in to comment.