Skip to content

Commit 6f0f197

Browse files
committed
fix datatype issue
1 parent a78d980 commit 6f0f197

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/e2e_automation/utilities/batch_file_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def validate_json_bus_ack_file_failure_records(
365365
row_valid = False
366366

367367
try:
368-
df_row = context.vaccine_df.loc[row_id - 2]
368+
df_row = context.vaccine_df.loc[int(row_id) - 2]
369369
expected_error = get_expected_error(df_row, use_username_for_error_lookup)
370370

371371
expected_diagnostic = ERROR_MAP.get(expected_error, {}).get("diagnostics")

0 commit comments

Comments
 (0)