Addressed checkstyle issue
This commit is contained in:
parent
10179007e8
commit
0fad8b9b6c
@ -45,7 +45,7 @@ public class DataMapperTest {
|
|||||||
|
|
||||||
/* Create new student */
|
/* Create new student */
|
||||||
int studentId = 1;
|
int studentId = 1;
|
||||||
Student student = new Student(studentId, "Adam", 'A');
|
Student student = new Student(studentId, "Adam", 'A');
|
||||||
|
|
||||||
/* Add student in respectibe db */
|
/* Add student in respectibe db */
|
||||||
mapper.insert(student);
|
mapper.insert(student);
|
||||||
@ -55,7 +55,7 @@ public class DataMapperTest {
|
|||||||
|
|
||||||
/* Update existing student object */
|
/* Update existing student object */
|
||||||
String updatedName = "AdamUpdated";
|
String updatedName = "AdamUpdated";
|
||||||
student = new Student(student.getStudentId(), updatedName, 'A');
|
student = new Student(student.getStudentId(), updatedName, 'A');
|
||||||
|
|
||||||
/* Update student in respectibe db */
|
/* Update student in respectibe db */
|
||||||
mapper.update(student);
|
mapper.update(student);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user