Fixed compilation error

This commit is contained in:
Zeger Hendrikse 2017-05-15 20:56:14 +02:00
parent 4d53bdd90a
commit 1130dc6b1e
1 changed files with 7 additions and 6 deletions

View File

@ -4,6 +4,7 @@ import java.util.List;
import org.junit.Ignore;
import org.junit.Test;
import java.sql.SQLException;
import static org.junit.Assert.assertEquals;
@ -11,7 +12,7 @@ public class HikariCPTest {
@Test
@Ignore
public void givenConnection_thenFetchDbData() {
public void givenConnection_thenFetchDbData() throws SQLException {
List<Employee> employees = HikariCPDemo.fetchData();
assertEquals(4, employees.size());
}