Commit b1ac89f5 authored by Dave Cramer's avatar Dave Cramer

removed personal test parameters

parent bbc9b759
...@@ -16,8 +16,7 @@ public class JDBC2Tests extends TestSuite ...@@ -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 ...@@ -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 ...@@ -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");
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment