File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/interfaces/jdbc/org/postgresql/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ behaviour or the intended implementation of a feature?
168
168
----------------------
169
169
package org.postgresql.test.jdbc2;
170
170
171
- import org.postgresql.test.JDBC2Tests ;
171
+ import org.postgresql.test.TestUtil ;
172
172
import junit.framework.TestCase;
173
173
import java.sql.*;
174
174
@@ -185,7 +185,7 @@ public class FooTest extends TestCase {
185
185
}
186
186
187
187
protected void setUp() throws Exception {
188
- con = JDBC2Tests .openDB();
188
+ con = TestUtil .openDB();
189
189
stmt = con.createStatement();
190
190
191
191
// Drop the test table if it already exists for some
@@ -214,7 +214,7 @@ public class FooTest extends TestCase {
214
214
stmt.close();
215
215
}
216
216
if (con != null) {
217
- JDBC2Tests .closeDB(con);
217
+ TestUtil .closeDB(con);
218
218
}
219
219
}
220
220
You can’t perform that action at this time.
0 commit comments