Fix partial test refactor with java 6

This commit is contained in:
Travis Burtrum 2018-04-21 01:45:45 -04:00
parent 670e14d57e
commit b9f963ca5f
1 changed files with 4 additions and 4 deletions

View File

@ -437,7 +437,7 @@ public class QueryMapperTest {
assertArrayEquals(people, fromDb.toArray());
}
//IFJAVA8_START
//IFJAVA 8_START
@Test
public void testStream() throws SQLException {
@ -450,7 +450,7 @@ public class QueryMapperTest {
}
//IFJAVA8_END
//IFJAVA 8_END
@Test
@ -485,7 +485,7 @@ public class QueryMapperTest {
assertEquals(expected, qm.toObject("SELECT first_name AS M_PERSON_FIRST_NAME FROM person WHERE person_no = ?", CaseSensitivePerson.class, fieldPerson1.getPersonNo()));
}
//IFJAVA8_START
//IFJAVA 8_START
@Test
public void testInstant() throws SQLException {
@ -569,6 +569,6 @@ public class QueryMapperTest {
);
}
//IFJAVA8_END
//IFJAVA 8_END
*/
}