Skip to content

Commit 641d9ca

Browse files
committed
Correct match counts in tests.
The reported numbers were for older versions of .hdt.index.
1 parent 781254e commit 641d9ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/datasources/CompositeDatasource-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe('CompositeDatasource', function () {
9191
itShouldExecute(getDatasource,
9292
'a query for an existing predicate',
9393
{ predicate: 'http://example.org/p1', limit: 10, features: { triplePattern: true, limit: true } },
94-
10, 111);
94+
10, 220);
9595

9696
itShouldExecute(getDatasource,
9797
'a query for a non-existing predicate',

test/datasources/HdtDatasource-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('HdtDatasource', function () {
6868
itShouldExecute(getDatasource,
6969
'a query for an existing predicate',
7070
{ predicate: 'http://example.org/p1', limit: 10, features: { triplePattern: true, limit: true } },
71-
10, 20);
71+
10, 110);
7272

7373
itShouldExecute(getDatasource,
7474
'a query for a non-existing predicate',

0 commit comments

Comments
 (0)