Skip to content

Commit dfe9d0e

Browse files
committed
[PRMP-631] Typo in 'unstitched'
1 parent 43ad737 commit dfe9d0e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

lambdas/tests/e2e/bulk_upload/check/test_accept_bulk_upload.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def bulk_upload_table_records():
3333
return {
3434
"lloyd_george_records": lloyd_george_data_helper.scan_lloyd_george_table(),
3535
"bulk_upload_report_records": lloyd_george_data_helper.scan_bulk_upload_report_table(),
36-
"unstiched_records": lloyd_george_data_helper.scan_unstitch_table(),
36+
"unstitched_records": lloyd_george_data_helper.scan_unstitch_table(),
3737
}
3838

3939

@@ -54,7 +54,7 @@ def test_general_accepted_ingestions(
5454
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
5555
),
5656
"unstitched": get_all_entries_from_table_by_nhs_number(nhs_number,
57-
bulk_upload_table_records["unstiched_records"]),
57+
bulk_upload_table_records["unstitched_records"]),
5858
}
5959

6060
def generate_unstitched_exclusions(num):
@@ -104,7 +104,7 @@ def test_usb_accepted_ingestions(
104104
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
105105
),
106106
"unstitched": get_all_entries_from_table_by_nhs_number(nhs_number,
107-
bulk_upload_table_records["unstiched_records"]),
107+
bulk_upload_table_records["unstitched_records"]),
108108
}
109109
assert records_by_num == snapshot_json(
110110
exclude=paths(
@@ -139,7 +139,7 @@ def test_remap_and_fixed(
139139
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
140140
),
141141
"unstitched": get_all_entries_from_table_by_nhs_number(nhs_number,
142-
bulk_upload_table_records["unstiched_records"]),
142+
bulk_upload_table_records["unstitched_records"]),
143143
}
144144
assert records_by_num == snapshot_json(
145145
exclude=paths(

lambdas/tests/e2e/bulk_upload/check/test_reject_bulk_upload.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def bulk_upload_table_records():
3131
return {
3232
"lloyd_george_records": lloyd_george_data_helper.scan_lloyd_george_table(),
3333
"bulk_upload_report_records": lloyd_george_data_helper.scan_bulk_upload_report_table(),
34-
"unstiched_records": lloyd_george_data_helper.scan_unstitch_table(),
34+
"unstitched_records": lloyd_george_data_helper.scan_unstitch_table(),
3535
}
3636

3737

@@ -51,7 +51,7 @@ def test_general_reject_ingestions(
5151
"bulk_upload_report": get_entry_from_table_by_nhs_number(
5252
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
5353
),
54-
"unstitched": get_entry_from_table_by_nhs_number(nhs_number, bulk_upload_table_records["unstiched_records"]),
54+
"unstitched": get_entry_from_table_by_nhs_number(nhs_number, bulk_upload_table_records["unstitched_records"]),
5555
}
5656
assert records_by_num == snapshot_json(
5757
exclude=paths(
@@ -79,7 +79,7 @@ def test_usb_reject_ingestions(
7979
"bulk_upload_report": get_entry_from_table_by_nhs_number(
8080
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
8181
),
82-
"unstitched": get_entry_from_table_by_nhs_number(nhs_number, bulk_upload_table_records["unstiched_records"]),
82+
"unstitched": get_entry_from_table_by_nhs_number(nhs_number, bulk_upload_table_records["unstitched_records"]),
8383
}
8484
assert records_by_num == snapshot_json(
8585
exclude=paths(

lambdas/tests/e2e/bulk_upload/check/test_scod_bulk_upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def bulk_upload_table_records():
2828
return {
2929
"lloyd_george_records": lloyd_george_data_helper.scan_lloyd_george_table(),
3030
"bulk_upload_report_records": lloyd_george_data_helper.scan_bulk_upload_report_table(),
31-
"unstiched_records": lloyd_george_data_helper.scan_unstitch_table(),
31+
"unstitched_records": lloyd_george_data_helper.scan_unstitch_table(),
3232
}
3333

3434

@@ -49,7 +49,7 @@ def test_scod_ingestions(
4949
nhs_number, bulk_upload_table_records["bulk_upload_report_records"]
5050
),
5151
"unstitched": get_all_entries_from_table_by_nhs_number(nhs_number,
52-
bulk_upload_table_records["unstiched_records"]),
52+
bulk_upload_table_records["unstitched_records"]),
5353
}
5454
assert records_by_num == snapshot_json(
5555
exclude=paths(

0 commit comments

Comments
 (0)