File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/test/java/com/google/cloud/spanner/jdbc/it Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -745,7 +745,8 @@ public void test04_Timestamps() throws SQLException {
745745 // Then get it in the test timezone.
746746 if (testCalendar != null
747747 && !System .getProperty ("java.vm.name" , "" ).toLowerCase ().contains ("graalvm" )
748- && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("graalvm" )) {
748+ && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("graalvm" )
749+ && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("oracle" )) {
749750 Timestamp inOtherTZ = rs .getTimestamp (4 , testCalendar );
750751 assertEquals (
751752 "Timezone: "
@@ -768,7 +769,8 @@ public void test04_Timestamps() throws SQLException {
768769 if (testCalendar == null ) {
769770 assertEquals (testTimestamp .getTime (), inDefaultTZ .getTime ());
770771 } else if (!System .getProperty ("java.vm.name" , "" ).toLowerCase ().contains ("graalvm" )
771- && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("graalvm" )) {
772+ && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("graalvm" )
773+ && !System .getProperty ("java.vendor" , "" ).toLowerCase ().contains ("oracle" )) {
772774 assertEquals (
773775 "Timezone: "
774776 + testCalendar
You can’t perform that action at this time.
0 commit comments