Skip to content

Commit cd5029a

Browse files
committed
refactor: remove test cases from geomap data
1 parent 547e4ae commit cd5029a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

server/workers/common/common/aquanavi/mapping.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,15 +318,12 @@ def load_and_prepare_dataframe():
318318
DataFrame: Pandas DataFrame with information from CSVs.
319319
"""
320320
csv_real_path = Path(CSV_PATH_WITH_REAL_DATA)
321-
csv_test_path = Path(CSV_PATH_WITH_TEST_DATA)
322321

323322
check_that_csv_file_exists(csv_real_path)
324-
check_that_csv_file_exists(csv_test_path)
325323

326324
df_real = pd.read_csv(csv_real_path).fillna("")
327-
df_test = pd.read_csv(csv_test_path).fillna("")
328325

329-
df = pd.concat([df_real, df_test], ignore_index=True)
326+
df = pd.concat([df_real], ignore_index=True)
330327
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
331328

332329
return df

0 commit comments

Comments
 (0)