You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/10/10 21:26:00 UTC

svn commit: r1396753 - /jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java

Author: andy
Date: Wed Oct 10 19:25:59 2012
New Revision: 1396753

URL: http://svn.apache.org/viewvc?rev=1396753&view=rev
Log:
Remove **** in message.

Modified:
    jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java

Modified: jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java?rev=1396753&r1=1396752&r2=1396753&view=diff
==============================================================================
--- jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java (original)
+++ jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TestNodeValueOps.java Wed Oct 10 19:25:59 2012
@@ -49,7 +49,7 @@ public class TestNodeValueOps extends Ba
             if ( isProbablyIBMJVM() )
                 // IBM JDK causes NPE on this one.
                 // IllegalStateException is acceptable; NullPointerException is not. 
-                Log.warn(this, "**** IBM JVM does not support xsd:yearMonthDuration_xsd:dayTimeDuration") ;
+                Log.warn(this, "IBM JVM does not support xsd:yearMonthDuration + xsd:dayTimeDuration") ;
             else
                 throw ex ;
         }
@@ -95,7 +95,6 @@ public class TestNodeValueOps extends Ba
     @Test public void nv_sub_21() { testSub("'PT2H'^^xsd:dayTimeDuration", "'PT1H'^^xsd:dayTimeDuration", "'PT1H'^^xsd:dayTimeDuration" ) ; }
     @Test public void nv_sub_22() { testSub("'P2Y'^^xsd:yearMonthDuration", "'P1Y'^^xsd:yearMonthDuration", "'P1Y'^^xsd:yearMonthDuration" ) ; }
     @Test public void nv_sub_23() { testSub("'P3D'^^xsd:dayTimeDuration", "'PT4H'^^xsd:dayTimeDuration", "'P2DT20H'^^xsd:dayTimeDuration" ) ; }
-
     
     // Date/time - duration
     @Test public void nv_sub_30() { testSub("'2000-01-01'^^xsd:date", "'P1Y'^^xsd:duration", "'1999-01-01'^^xsd:date") ; }