diff options
author | Barry Lind <barry@xythos.com> | 2003-08-11 21:20:50 +0000 |
---|---|---|
committer | Barry Lind <barry@xythos.com> | 2003-08-11 21:20:50 +0000 |
commit | c82bfea12529593cc95f28319c3126a261cb4be1 (patch) | |
tree | e8d1c36ec070ee0382d73bb9d944a8b6ad5856e2 | |
parent | 1ca4e700deaf8ce9a1b4c07c97bec4f58c4611b1 (diff) | |
download | postgresql-c82bfea12529593cc95f28319c3126a261cb4be1.tar.gz postgresql-c82bfea12529593cc95f28319c3126a261cb4be1.zip |
Applied patch from Oliver Jewett to clean up the testing README file
Modified Files:
jdbc/org/postgresql/test/README
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/test/README | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/test/README b/src/interfaces/jdbc/org/postgresql/test/README index 27abba33769..b65c2a98009 100644 --- a/src/interfaces/jdbc/org/postgresql/test/README +++ b/src/interfaces/jdbc/org/postgresql/test/README @@ -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); } } |