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/06/02 16:45:14 UTC

[02/50] incubator-commonsrdf git commit: COMMONSRDF-8 Update test: internalIdentifier -> uniqueReference

COMMONSRDF-8 Update test: internalIdentifier -> uniqueReference


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

Branch: refs/heads/rdf4j
Commit: a79ff94a07fe03a78149c81b5a8cbffa898bc922
Parents: d0ae0ca
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Sat Mar 12 18:33:47 2016 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Sat Mar 12 18:34:07 2016 +0000

----------------------------------------------------------------------
 .../org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/a79ff94a/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 4f5de6b..5056c9d 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
@@ -126,8 +126,8 @@ public abstract class AbstractRDFTermFactoryTest {
         }
         //
         assertNotEquals(bnode1, differentFactory);
-        assertNotEquals(bnode1.internalIdentifier(),
-                differentFactory.internalIdentifier());
+        assertNotEquals(bnode1.uniqueReference(),
+                differentFactory.uniqueReference());
         // but not
         //assertNotEquals(bnode1.ntriplesString(), differentFactory.ntriplesString());
     }