Addressed checkstyle issue

This commit is contained in:
npathai 2018-10-21 17:20:52 +05:30
parent 10179007e8
commit 0fad8b9b6c

View File

@ -45,7 +45,7 @@ public class DataMapperTest {
/* Create new student */
int studentId = 1;
Student student = new Student(studentId, "Adam", 'A');
Student student = new Student(studentId, "Adam", 'A');
/* Add student in respectibe db */
mapper.insert(student);
@ -55,7 +55,7 @@ public class DataMapperTest {
/* Update existing student object */
String updatedName = "AdamUpdated";
student = new Student(student.getStudentId(), updatedName, 'A');
student = new Student(student.getStudentId(), updatedName, 'A');
/* Update student in respectibe db */
mapper.update(student);