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/07 15:01:24 UTC

[21/50] incubator-commonsrdf git commit: rdf4j test: initialize sail explicitly

rdf4j test: initialize sail explicitly


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

Branch: refs/heads/master
Commit: ffa822e7b85a7011769c6348852fa750b8a52c5f
Parents: cd368d5
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Mon Oct 3 17:42:25 2016 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Mon Oct 3 17:42:25 2016 +0100

----------------------------------------------------------------------
 .../src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ffa822e7/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java
----------------------------------------------------------------------
diff --git a/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java
index 059b486..60b15d6 100644
--- a/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java
+++ b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/MemoryGraphTest.java
@@ -36,6 +36,7 @@ public class MemoryGraphTest extends AbstractGraphTest {
 		public RDF4JGraph createGraph() throws UnsupportedOperationException {
 			Sail sail = new MemoryStore();
 			Repository repository = new SailRepository(sail);
+			repository.initialize();
 			return asRDFTermGraph(repository);
 		}
 	}