Index: tck/src/java/org/apache/jdo/tck/pc/company/Person.java =================================================================== --- tck/src/java/org/apache/jdo/tck/pc/company/Person.java (revision 1465451) +++ tck/src/java/org/apache/jdo/tck/pc/company/Person.java (working copy) @@ -49,7 +49,7 @@ private Map phoneNumbers = new HashMap(); protected static SimpleDateFormat formatter = - new SimpleDateFormat("d/MMM/yyyy"); + new SimpleDateFormat("d/MMM/yyyy hh:mm"); /** This is the JDO-required no-args constructor. */ protected Person() {} Index: tck/src/java/org/apache/jdo/tck/query/jdoql/methods/SupportedDateMethods.java =================================================================== --- tck/src/java/org/apache/jdo/tck/query/jdoql/methods/SupportedDateMethods.java (revision 1465451) +++ tck/src/java/org/apache/jdo/tck/query/jdoql/methods/SupportedDateMethods.java (working copy) @@ -34,7 +34,7 @@ *Assertion Description: * New supported Date methods: * @@ -56,7 +56,7 @@ /*INTO*/ null, /*FROM*/ Person.class, /*EXCLUDE*/ null, - /*WHERE*/ "birthdate.getDay() == 10", + /*WHERE*/ "birthdate.getDate() == 10", /*VARIABLES*/ null, /*PARAMETERS*/ null, /*IMPORTS*/ null, @@ -113,7 +113,7 @@ } /** */ - public void testGetDay() { + public void testGetDate() { int index = 0; executeQuery(index); }