style: コメント追加

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-04-11 17:42:41 +09:00
parent ea9b52c21e
commit fce03581c4

View File

@ -241,10 +241,11 @@ def assert_table_results(actual_rows: list[dict], expect_rows: list[dict], ignor
# 取得件数が一致すること
assert len(actual_rows) == len(expect_rows)
# 1カラムずつ調査
line_number = 0
# 1行ずつ調査
for actual_row, expect_row in zip(actual_rows, expect_rows):
line_number += 1
# 1カラムずつ調査
for actual_col_name, expect_col_name in zip(actual_row, expect_row):
# テストメソッド側で個別に確認するものはスキップさせる
if ignore_col_name is not None and actual_col_name in ignore_col_name: