Index: src/doc/release-notes.xml =================================================================== --- src/doc/release-notes.xml (revision 8024) +++ src/doc/release-notes.xml (working copy) @@ -73,6 +73,26 @@ + + + Fixed failing test TC203 of old Castor JDO test suite. + + + Ralf Joachim + ralf.joachim@syscon.eu + + + Ralf Joachim + ralf.joachim@syscon.eu + + + Ralf Joachim + ralf.joachim@syscon.eu + + Bug + JDO + 20090124 + Replaced references in .classpath from jar's of lib directory to jar's of Index: cpactf/src/old/java/ctf/jdo/tc20x/TestTimezone.java =================================================================== --- cpactf/src/old/java/ctf/jdo/tc20x/TestTimezone.java (revision 8022) +++ cpactf/src/old/java/ctf/jdo/tc20x/TestTimezone.java (working copy) @@ -61,7 +61,8 @@ LOG.debug("user.timezone = " + System.getProperty("user.timezone")); Configuration config = CPAConfiguration.newInstance(); - String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE); + String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE, + System.getProperty("user.timezone")); LOG.debug(CPAConfiguration.DEFAULT_TIMEZONE + " = " + testTimezone); Database database = _category.getDatabase(); @@ -171,7 +172,8 @@ LOG.debug("user.timezone = " + System.getProperty("user.timezone")); Configuration config = CPAConfiguration.newInstance(); - String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE); + String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE, + System.getProperty("user.timezone")); LOG.debug(CPAConfiguration.DEFAULT_TIMEZONE + " = " + testTimezone); Database database = _category.getDatabase(); @@ -278,7 +280,8 @@ LOG.debug("user.timezone = " + System.getProperty("user.timezone")); Configuration config = CPAConfiguration.newInstance(); - String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE); + String testTimezone = config.getString(CPAConfiguration.DEFAULT_TIMEZONE, + System.getProperty("user.timezone")); LOG.debug(CPAConfiguration.DEFAULT_TIMEZONE + " = " + testTimezone); Database database = _category.getDatabase();