]> granicus.if.org Git - postgresql/commitdiff
Applied patch from Oliver Jewett to clean up the testing README file
authorBarry Lind <barry@xythos.com>
Mon, 11 Aug 2003 21:20:50 +0000 (21:20 +0000)
committerBarry Lind <barry@xythos.com>
Mon, 11 Aug 2003 21:20:50 +0000 (21:20 +0000)
 Modified Files:
  jdbc/org/postgresql/test/README

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

index 27abba337694217171fa3ca7b5f7bd8f1738ce08..b65c2a98009830ab6f70a8060fa79def4b76a045 100644 (file)
@@ -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);
         }
     }