提交 c82bfea1 编写于 作者: B Barry Lind

Applied patch from Oliver Jewett to clean up the testing README file

 Modified Files:
 	jdbc/org/postgresql/test/README
上级 1ca4e700
......@@ -168,7 +168,7 @@ behaviour or the intended implementation of a feature?
----------------------
package org.postgresql.test.jdbc2;
import org.postgresql.test.JDBC2Tests;
import org.postgresql.test.TestUtil;
import junit.framework.TestCase;
import java.sql.*;
......@@ -185,7 +185,7 @@ public class FooTest extends TestCase {
}
protected void setUp() throws Exception {
con = JDBC2Tests.openDB();
con = TestUtil.openDB();
stmt = con.createStatement();
// Drop the test table if it already exists for some
......@@ -214,7 +214,7 @@ public class FooTest extends TestCase {
stmt.close();
}
if (con != null) {
JDBC2Tests.closeDB(con);
TestUtil.closeDB(con);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册