removed personal test parameters
authorDave Cramer <[email protected]>
Thu, 13 Jun 2002 14:37:30 +0000 (14:37 +0000)
committerDave Cramer <[email protected]>
Thu, 13 Jun 2002 14:37:30 +0000 (14:37 +0000)
src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java

index 16ee85c7b01590c4df3fe9abe883339dea490ad2..bacad690281d023e63f167965832d62f80cdbd7b 100644 (file)
@@ -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");
    }
 
    /*