@@ -1210,35 +1210,35 @@ void testPRPorYouthRule() {
1210
1210
PenMatchResult penMatchResult = getPenMatchResult ();
1211
1211
when (this .restUtils .getPenMatchResult (any (), any (), any ())).thenReturn (penMatchResult );
1212
1212
1213
- SchoolTombstone ShortPRPSchool = createMockSchool ();
1214
- ShortPRPSchool .setFacilityTypeCode (FacilityTypeCodes .SHORT_PRP .getCode ());
1213
+ SchoolTombstone shortPRPSchool = createMockSchool ();
1214
+ shortPRPSchool .setFacilityTypeCode (FacilityTypeCodes .SHORT_PRP .getCode ());
1215
1215
1216
1216
List <ProgramEligibilityIssueCode > listWithErrorShortPRP = rulesProcessor .processRules (
1217
1217
createMockStudentRuleData (
1218
1218
schoolStudentEntity ,
1219
- ShortPRPSchool
1219
+ shortPRPSchool
1220
1220
)
1221
1221
);
1222
1222
assertThat (listWithErrorShortPRP ).contains (ProgramEligibilityIssueCode .PRP_YOUTH );
1223
1223
1224
- SchoolTombstone LongPRPSchool = createMockSchool ();
1225
- LongPRPSchool .setFacilityTypeCode (FacilityTypeCodes .LONG_PRP .getCode ());
1224
+ SchoolTombstone longPRPSchool = createMockSchool ();
1225
+ longPRPSchool .setFacilityTypeCode (FacilityTypeCodes .LONG_PRP .getCode ());
1226
1226
1227
1227
List <ProgramEligibilityIssueCode > listWithErrorLongPRP = rulesProcessor .processRules (
1228
1228
createMockStudentRuleData (
1229
1229
schoolStudentEntity ,
1230
- LongPRPSchool
1230
+ longPRPSchool
1231
1231
)
1232
1232
);
1233
1233
assertThat (listWithErrorLongPRP ).contains (ProgramEligibilityIssueCode .PRP_YOUTH );
1234
1234
1235
- SchoolTombstone YouthSchool = createMockSchool ();
1236
- YouthSchool .setFacilityTypeCode (FacilityTypeCodes .SHORT_PRP .getCode ());
1235
+ SchoolTombstone youthSchool = createMockSchool ();
1236
+ youthSchool .setFacilityTypeCode (FacilityTypeCodes .SHORT_PRP .getCode ());
1237
1237
1238
1238
List <ProgramEligibilityIssueCode > listWithErrorYouth = rulesProcessor .processRules (
1239
1239
createMockStudentRuleData (
1240
1240
schoolStudentEntity ,
1241
- YouthSchool
1241
+ youthSchool
1242
1242
)
1243
1243
);
1244
1244
assertThat (listWithErrorYouth ).contains (ProgramEligibilityIssueCode .PRP_YOUTH );
0 commit comments