summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Cramer2002-06-13 14:37:30 +0000
committerDave Cramer2002-06-13 14:37:30 +0000
commitb1ac89f594114a8ff4b6f9dab1648c816d0c36b0 (patch)
treeee2bdb04ba75cf6ebb87743f6a7efa08cac08c4d /src
parentbbc9b759d67d208d04e69ba2410badfe9b9f5927 (diff)
removed personal test parameters
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java b/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java
index 16ee85c7b01..bacad690281 100644
--- a/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java
+++ b/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java
@@ -16,8 +16,7 @@ public class JDBC2Tests extends TestSuite
*/
public static String getURL()
{
- //return System.getProperty("database");
- return "test";
+ return System.getProperty("database");
}
/*
@@ -25,8 +24,7 @@ public class JDBC2Tests extends TestSuite
*/
public static String getUser()
{
- return "davec";
- //return System.getProperty("username");
+ return System.getProperty("username");
}
/*
@@ -34,8 +32,7 @@ public class JDBC2Tests extends TestSuite
*/
public static String getPassword()
{
- return null;
- //return System.getProperty("password");
+ return System.getProperty("password");
}
/*