You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by mo...@apache.org on 2012/05/13 17:26:26 UTC

svn commit: r1337922 - /incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java

Author: mostarda
Date: Sun May 13 15:26:26 2012
New Revision: 1337922

URL: http://svn.apache.org/viewvc?rev=1337922&view=rev
Log:
Utility method name refactored.

Modified:
    incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java

Modified: incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java?rev=1337922&r1=1337921&r2=1337922&view=diff
==============================================================================
--- incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java (original)
+++ incubator/any23/trunk/core/src/test/java/org/apache/any23/filter/ExtractionContextBlockerTest.java Sun May 13 15:26:26 2012
@@ -32,9 +32,9 @@ import org.openrdf.model.URI;
 public class ExtractionContextBlockerTest {
 
     private final static URI docURI = RDFUtils.uri("http://example.com/doc");
-    private final static URI s = (URI) RDFUtils.toRDF("ex:s");
-    private final static URI p = (URI) RDFUtils.toRDF("ex:p");
-    private final static URI o = (URI) RDFUtils.toRDF("ex:o");
+    private final static URI s = (URI) RDFUtils.toValue("ex:s");
+    private final static URI p = (URI) RDFUtils.toValue("ex:p");
+    private final static URI o = (URI) RDFUtils.toValue("ex:o");
     private ExtractionContextBlocker blocker;
     private MockTripleHandler handler;