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 93c91df commit 81153f4Copy full SHA for 81153f4
src/test/java/examples/animal/data/AnimalDataTest.java
@@ -75,6 +75,7 @@ class AnimalDataTest {
75
void setup() throws Exception {
76
Class.forName(JDBC_DRIVER);
77
InputStream is = getClass().getResourceAsStream("/examples/animal/data/CreateAnimalData.sql");
78
+ assert is != null;
79
try (Connection connection = DriverManager.getConnection(JDBC_URL, "sa", "")) {
80
ScriptRunner sr = new ScriptRunner(connection);
81
sr.setLogWriter(null);
0 commit comments