Revision: 7953
http://sourceforge.net/p/bigdata/code/7953
Author: mrpersonick
Date: 2014-03-13 13:55:47 +0000 (Thu, 13 Mar 2014)
Log Message:
-----------
fixing some CI errors
Modified Paths:
--------------
branches/RDR/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestNTriplesWithSids.java
Modified: branches/RDR/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestNTriplesWithSids.java
===================================================================
--- branches/RDR/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestNTriplesWithSids.java 2014-03-13 13:53:26 UTC (rev 7952)
+++ branches/RDR/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestNTriplesWithSids.java 2014-03-13 13:55:47 UTC (rev 7953)
@@ -110,6 +110,10 @@
log.info(store.dumpStore());
assertEquals("toldTriples", 3L, store.getStatementCount());//loadStats.toldTriples.get());
+
+ final BigdataStatementIterator it = store.getStatements(null, null, null);
+ while (it.hasNext())
+ System.err.println(it.next());
final BigdataURI dcSource = store.getValueFactory().createURI(
"http://purl.org/dc/terms/source");
@@ -256,8 +260,8 @@
if (log.isInfoEnabled())
log.info(store.dumpStore());
- assertEquals("toldTriples", 3L, loadStats.toldTriples.get());
-
+ assertEquals("toldTriples", 3L, store.getStatementCount());//loadStats.toldTriples.get());
+
final BigdataURI dcSource = store.getValueFactory().createURI(
"http://purl.org/dc/terms/source");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|