Skip to content

Commit

Permalink
Test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arybakov-cgi committed Jul 25, 2023
1 parent ee84a02 commit ad5204f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

import lombok.Data;

import java.io.Serializable;
import java.util.Date;

@Data
public class BaseModel {
public class BaseModel implements Serializable {
private String createUser;
private Date createDate;
private String updateUser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ public void testGetSchoolReportGradStudentData() {
reportGradStudentDataList.add(reportGradStudentData);

SchoolReportEntity schoolReportEntity = new SchoolReportEntity();
schoolReportEntity.setGraduationStudentRecordId(studentId);
schoolReportEntity.setSchoolReportEntityId(new SchoolReportEntityId(studentId, "EBDR", "E"));

when(schoolReportYearEndRepository.findStudentForSchoolYearEndReport(PageRequest.of(0, PAGE_SIZE))).thenReturn(new Page() {

Expand Down

0 comments on commit ad5204f

Please sign in to comment.