@@ -296,6 +296,7 @@ def test_correction_share_class_series_validation(session, app, jwt, legal_type,
296296 filing ['filing' ]['correction' ]['correctedFilingId' ] = corrected_filing .id
297297 filing ['filing' ]['business' ]['legalType' ] = legal_type
298298 del filing ['filing' ]['correction' ]['commentOnly' ]
299+ del filing ['filing' ]['correction' ]['nameRequest' ]
299300
300301 if legal_type == 'CC' :
301302 director = copy .deepcopy (filing ['filing' ]['correction' ]['parties' ][0 ])
@@ -367,6 +368,7 @@ def test_correction_resolution_date_old(session, app, jwt, test_name, has_rights
367368 filing ['filing' ]['header' ]['identifier' ] = identifier
368369 filing ['filing' ]['correction' ]['correctedFilingId' ] = corrected_filing .id
369370 del filing ['filing' ]['correction' ]['commentOnly' ]
371+ del filing ['filing' ]['correction' ]['nameRequest' ]
370372
371373 # Share structure setup
372374 filing ['filing' ]['correction' ]['shareStructure' ] = copy .deepcopy (
@@ -447,6 +449,7 @@ def test_correction_resolution_date(session, app, jwt, test_name, has_rights_or_
447449 filing ['filing' ]['header' ]['identifier' ] = identifier
448450 filing ['filing' ]['correction' ]['correctedFilingId' ] = corrected_filing .id
449451 del filing ['filing' ]['correction' ]['commentOnly' ]
452+ del filing ['filing' ]['correction' ]['nameRequest' ]
450453
451454 # Share structure setup
452455 filing ['filing' ]['correction' ]['shareStructure' ] = copy .deepcopy (
@@ -673,6 +676,7 @@ def test_validate_correction_continuation_in_incorporation_date(mocker, app, ses
673676 }
674677 filing ['filing' ]['business' ]['legalType' ] = 'C'
675678 del filing ['filing' ]['correction' ]['commentOnly' ]
679+ del filing ['filing' ]['correction' ]['nameRequest' ]
676680 factory_jurisdiction (
677681 business_id = business .id ,
678682 filing_id = corrected_filing .id ,
@@ -774,6 +778,7 @@ def test_validate_continuation_in_field_lengths(mocker, app, session, jwt,
774778 }
775779 filing ['filing' ]['business' ]['legalType' ] = 'C'
776780 del filing ['filing' ]['correction' ]['commentOnly' ]
781+ del filing ['filing' ]['correction' ]['nameRequest' ]
777782
778783 factory_jurisdiction (
779784 business_id = business .id ,
@@ -822,6 +827,7 @@ def test_validate_continuation_in_expro_founding_date_match(mocker, app, session
822827 }
823828 filing ['filing' ]['business' ]['legalType' ] = 'C'
824829 del filing ['filing' ]['correction' ]['commentOnly' ]
830+ del filing ['filing' ]['correction' ]['nameRequest' ]
825831 factory_jurisdiction (
826832 business_id = business .id ,
827833 filing_id = corrected_filing .id ,
@@ -872,6 +878,7 @@ def test_validate_correction_continuation_in_existing_foreign_jurisdiction(mocke
872878 }
873879 filing ['filing' ]['business' ]['legalType' ] = 'C'
874880 del filing ['filing' ]['correction' ]['commentOnly' ]
881+ del filing ['filing' ]['correction' ]['nameRequest' ]
875882 factory_jurisdiction (
876883 business_id = business .id ,
877884 filing_id = corrected_filing .id ,
@@ -1065,7 +1072,7 @@ def test_validate_correction_amalgamation_ting_not_found(mocker, app, session, j
10651072 filing ['filing' ]['correction' ]['amalgamation' ] = data
10661073 filing ['filing' ]['business' ]['legalType' ] = 'BC'
10671074 del filing ['filing' ]['correction' ]['commentOnly' ]
1068-
1075+ del filing [ 'filing' ][ 'correction' ][ 'nameRequest' ]
10691076
10701077 with jwt_request_context (app , jwt , [BASIC_USER ]):
10711078 err = validate (business , filing )
@@ -1110,6 +1117,7 @@ def test_validate_correction_amalgamation_foreign_jurisdiction(mocker, app, sess
11101117 filing ['filing' ]['correction' ]['amalgamation' ] = data
11111118 filing ['filing' ]['business' ]['legalType' ] = 'BC'
11121119 del filing ['filing' ]['correction' ]['commentOnly' ]
1120+ del filing ['filing' ]['correction' ]['nameRequest' ]
11131121
11141122 with jwt_request_context (app , jwt , [BASIC_USER ]):
11151123 err = validate (business , filing )
@@ -1149,6 +1157,7 @@ def test_validate_correction_amalgamation_existing_foreign_jurisdiction(mocker,
11491157 filing ['filing' ]['correction' ]['amalgamation' ] = data
11501158 filing ['filing' ]['business' ]['legalType' ] = 'BC'
11511159 del filing ['filing' ]['correction' ]['commentOnly' ]
1160+ del filing ['filing' ]['correction' ]['nameRequest' ]
11521161
11531162 with jwt_request_context (app , jwt , [BASIC_USER ]):
11541163 err = validate (business , filing )
@@ -1181,7 +1190,7 @@ def test_validate_correction_amalgamation_ting_invalid(mocker, app, session, jwt
11811190 filing ['filing' ]['correction' ]['amalgamation' ] = data
11821191 filing ['filing' ]['business' ]['legalType' ] = 'BC'
11831192 del filing ['filing' ]['correction' ]['commentOnly' ]
1184-
1193+ del filing [ 'filing' ][ 'correction' ][ 'nameRequest' ]
11851194
11861195 with jwt_request_context (app , jwt , [BASIC_USER ]):
11871196 err = validate (business , filing )
@@ -1224,6 +1233,7 @@ def test_validate_correction_amalgamation_colin_ting(mocker, app, session, jwt):
12241233 filing ['filing' ]['correction' ]['amalgamation' ] = data
12251234 filing ['filing' ]['business' ]['legalType' ] = 'BC'
12261235 del filing ['filing' ]['correction' ]['commentOnly' ]
1236+ del filing ['filing' ]['correction' ]['nameRequest' ]
12271237
12281238 with jwt_request_context (app , jwt , [BASIC_USER ]):
12291239 err = validate (business , filing )
0 commit comments