Skip to content

Commit

Permalink
Update LoadQueryTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
nkos-eu committed Jan 25, 2019
1 parent 5b8274d commit a3b69d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/db_adapter_depended/store/query/LoadQueryTest.php
Expand Up @@ -40,7 +40,7 @@ public function testLoad()
.'master/tests/data/turtle/manifest.ttl>
WHERE {?s ?p ?o.}
');
$this->assertEquals(106, count($res['result']['rows']));
$this->assertEquals(1860, count($res['result']['rows']));
}

public function testLoadInto()
Expand All @@ -55,6 +55,6 @@ public function testLoadInto()

// check that triples were inserted
$res = $this->fixture->query('SELECT * FROM <http://load-example> WHERE {?s ?p ?o.}');
$this->assertEquals(106, count($res['result']['rows']));
$this->assertEquals(1860, count($res['result']['rows']));
}
}

0 comments on commit a3b69d4

Please sign in to comment.