Skip to content

Commit

Permalink
edit test
Browse files Browse the repository at this point in the history
  • Loading branch information
IMC07 committed Jan 18, 2024
1 parent 21a1655 commit 330f0b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sinks/utils/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,8 @@ def test_write_error_records_final_dependent(save_df_as_table,
{"meta_row_dq_results": [{"rule": "rule2"}]},
],
[
{"rule": "rule1", "failed_row_count": "2"},
{"rule": "rule2", "failed_row_count": "2"},
{"rule": "rule1", "failed_row_count": 2},
{"rule": "rule2", "failed_row_count": 2},
]
),
(
Expand All @@ -645,7 +645,7 @@ def test_write_error_records_final_dependent(save_df_as_table,
{"meta_row_dq_results": [{"rule": "rule1"}]},
],
[
{"rule": "rule1", "failed_row_count": "2"},
{"rule": "rule1", "failed_row_count": 2},
]
)
])
Expand Down

0 comments on commit 330f0b6

Please sign in to comment.