8000 Applied patch from Oliver Jewett to clean up the testing README file · codeimmortal/postgres@c82bfea · GitHub
[go: up one dir, main page]

Skip to content

Commit c82bfea

Browse files
author
Barry Lind
committed
Applied patch from Oliver Jewett to clean up the testing README file
Modified Files: jdbc/org/postgresql/test/README
1 parent 1ca4e70 commit c82bfea

File tree

1 file changed

+3
-3
lines changed
  • src/interfaces/jdbc/org/postgresql/test

1 file changed

+3
-3
lines changed

src/interfaces/jdbc/org/postgresql/test/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ behaviour or the intended implementation of a feature?
168168
----------------------
169169
package org.postgresql.test.jdbc2;
170170

171-
import org.postgresql.test.JDBC2Tests;
171+
import org.postgresql.test.TestUtil;
172172
import junit.framework.TestCase;
173173
import java.sql.*;
174174

@@ -185,7 +185,7 @@ public class FooTest extends TestCase {
185185
}
186186

187187
protected void setUp() throws Exception {
188-
con = JDBC2Tests.openDB();
188+
con = TestUtil.openDB();
189189
stmt = con.createStatement();
190190

191191
// Drop the test table if it already exists for some
@@ -214,7 +214,7 @@ public class FooTest extends TestCase {
214214
stmt.close();
215215
}
216216
if (con != null) {
217-
JDBC2Tests.closeDB(con);
217+
TestUtil.closeDB(con);
218218
}
219219
}
220220

0 commit comments

Comments
 (0)
0