From 44b20edae94982e23af29e3b3c2699bd06b5f47d Mon Sep 17 00:00:00 2001 From: ghiggi Date: Tue, 2 Apr 2024 20:31:54 +0200 Subject: [PATCH] Fix test_io.py test unit --- disdrodb/tests/test_l0/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disdrodb/tests/test_l0/test_io.py b/disdrodb/tests/test_l0/test_io.py index 48f0816c..b696c7d4 100644 --- a/disdrodb/tests/test_l0/test_io.py +++ b/disdrodb/tests/test_l0/test_io.py @@ -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")