We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1017900 commit 0fad8b9Copy full SHA for 0fad8b9
data-mapper/src/test/java/com/iluwatar/datamapper/DataMapperTest.java
@@ -45,7 +45,7 @@ public void testFirstDataMapper() {
45
46
/* Create new student */
47
int studentId = 1;
48
- Student student = new Student(studentId, "Adam", 'A');
+ Student student = new Student(studentId, "Adam", 'A');
49
50
/* Add student in respectibe db */
51
mapper.insert(student);
@@ -55,7 +55,7 @@ public void testFirstDataMapper() {
55
56
/* Update existing student object */
57
String updatedName = "AdamUpdated";
58
- student = new Student(student.getStudentId(), updatedName, 'A');
+ student = new Student(student.getStudentId(), updatedName, 'A');
59
60
/* Update student in respectibe db */
61
mapper.update(student);
0 commit comments