Skip to content

Commit b1ac89f

Browse files
author
Dave Cramer
committed
removed personal test parameters
1 parent bbc9b75 commit b1ac89f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,23 @@ public class JDBC2Tests extends TestSuite
1616
*/
1717
public static String getURL()
1818
{
19-
//return System.getProperty("database");
20-
return "test";
19+
return System.getProperty("database");
2120
}
2221

2322
/*
2423
* Returns the Postgresql username
2524
*/
2625
public static String getUser()
2726
{
28-
return "davec";
29-
//return System.getProperty("username");
27+
return System.getProperty("username");
3028
}
3129

3230
/*
3331
* Returns the user's password
3432
*/
3533
public static String getPassword()
3634
{
37-
return null;
38-
//return System.getProperty("password");
35+
return System.getProperty("password");
3936
}
4037

4138
/*

0 commit comments

Comments
 (0)