Skip to content

Commit

Permalink
fixed another name
Browse files Browse the repository at this point in the history
  • Loading branch information
agordon-vivid committed Dec 13, 2024
1 parent 202f0db commit 266eac9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ void testGetProjectTypeCodes() throws Exception {
ProjectTypeCodeModel projectTypeCodeModel2 = new ProjectTypeCodeModel();
projectTypeCodeModel2.setProjectTypeCode(exampleId2);

List<ProjectTypeCodeModel> facList = Arrays.asList(projectTypeCodeModel1, projectTypeCodeModel2);
CollectionModel<ProjectTypeCodeModel> facModel = CollectionModel.of(facList);
List<ProjectTypeCodeModel> projectTypeCodeModels = Arrays.asList(projectTypeCodeModel1, projectTypeCodeModel2);
CollectionModel<ProjectTypeCodeModel> facModel = CollectionModel.of(projectTypeCodeModels);

when(codesService.getAllProjectTypeCodes()).thenReturn(facModel);

Expand Down

0 comments on commit 266eac9

Please sign in to comment.