mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
removed personal test parameters
This commit is contained in:
parent
bbc9b759d6
commit
b1ac89f594
@ -16,8 +16,7 @@ public class JDBC2Tests extends TestSuite
|
|||||||
*/
|
*/
|
||||||
public static String getURL()
|
public static String getURL()
|
||||||
{
|
{
|
||||||
//return System.getProperty("database");
|
return System.getProperty("database");
|
||||||
return "test";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -25,8 +24,7 @@ public class JDBC2Tests extends TestSuite
|
|||||||
*/
|
*/
|
||||||
public static String getUser()
|
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()
|
public static String getPassword()
|
||||||
{
|
{
|
||||||
return null;
|
return System.getProperty("password");
|
||||||
//return System.getProperty("password");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user