Skip to content

Commit b47fd31

Browse files
committed
smells
1 parent 8595c0e commit b47fd31

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

api/src/test/java/ca/bc/gov/educ/studentdatacollection/api/rules/ProgramEligibilityRulesProcessorTest.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,35 +1210,35 @@ void testPRPorYouthRule() {
12101210
PenMatchResult penMatchResult = getPenMatchResult();
12111211
when(this.restUtils.getPenMatchResult(any(), any(), any())).thenReturn(penMatchResult);
12121212

1213-
SchoolTombstone ShortPRPSchool = createMockSchool();
1214-
ShortPRPSchool.setFacilityTypeCode(FacilityTypeCodes.SHORT_PRP.getCode());
1213+
SchoolTombstone shortPRPSchool = createMockSchool();
1214+
shortPRPSchool.setFacilityTypeCode(FacilityTypeCodes.SHORT_PRP.getCode());
12151215

12161216
List<ProgramEligibilityIssueCode> listWithErrorShortPRP = rulesProcessor.processRules(
12171217
createMockStudentRuleData(
12181218
schoolStudentEntity,
1219-
ShortPRPSchool
1219+
shortPRPSchool
12201220
)
12211221
);
12221222
assertThat(listWithErrorShortPRP).contains(ProgramEligibilityIssueCode.PRP_YOUTH);
12231223

1224-
SchoolTombstone LongPRPSchool = createMockSchool();
1225-
LongPRPSchool.setFacilityTypeCode(FacilityTypeCodes.LONG_PRP.getCode());
1224+
SchoolTombstone longPRPSchool = createMockSchool();
1225+
longPRPSchool.setFacilityTypeCode(FacilityTypeCodes.LONG_PRP.getCode());
12261226

12271227
List<ProgramEligibilityIssueCode> listWithErrorLongPRP = rulesProcessor.processRules(
12281228
createMockStudentRuleData(
12291229
schoolStudentEntity,
1230-
LongPRPSchool
1230+
longPRPSchool
12311231
)
12321232
);
12331233
assertThat(listWithErrorLongPRP).contains(ProgramEligibilityIssueCode.PRP_YOUTH);
12341234

1235-
SchoolTombstone YouthSchool = createMockSchool();
1236-
YouthSchool.setFacilityTypeCode(FacilityTypeCodes.SHORT_PRP.getCode());
1235+
SchoolTombstone youthSchool = createMockSchool();
1236+
youthSchool.setFacilityTypeCode(FacilityTypeCodes.SHORT_PRP.getCode());
12371237

12381238
List<ProgramEligibilityIssueCode> listWithErrorYouth = rulesProcessor.processRules(
12391239
createMockStudentRuleData(
12401240
schoolStudentEntity,
1241-
YouthSchool
1241+
youthSchool
12421242
)
12431243
);
12441244
assertThat(listWithErrorYouth).contains(ProgramEligibilityIssueCode.PRP_YOUTH);

0 commit comments

Comments
 (0)