You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2016/10/23 00:59:47 UTC

[04/22] incubator-commonsrdf git commit: explain why relative IRI test can be ignored

explain why relative IRI test can be ignored


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/2a6fefa1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/2a6fefa1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/2a6fefa1

Branch: refs/heads/COMMONSRDF-46
Commit: 2a6fefa17c6048881dacc994a82d766308a9be7e
Parents: 518eacb
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Wed Oct 19 17:25:44 2016 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Wed Oct 19 17:25:44 2016 +0100

----------------------------------------------------------------------
 .../org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/2a6fefa1/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
----------------------------------------------------------------------
diff --git a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
index 5afa9f2..f1bcf8e 100644
--- a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
+++ b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
@@ -173,7 +173,7 @@ public abstract class AbstractRDFTermFactoryTest {
         try {
             factory.createIRI("../relative");
         } catch (IllegalArgumentException ex) {
-            Assume.assumeNoException(ex);
+            Assume.assumeNoException("Relative IRIs not supported - ignore this test", ex);
             return;
         }
         IRI relative = factory.createIRI("../relative");