refactor: Remove base URls with ContainerManager when possible

This commit is contained in:
Joachim Van Herwegen
2020-12-09 16:08:59 +01:00
parent f0db9e501f
commit 1bb5de97ab
10 changed files with 12 additions and 28 deletions

View File

@@ -8,7 +8,7 @@ import { describeIf, FileTestHelper } from '../util/TestHelpers';
describeIf('docker', 'a server with a SPARQL endpoint as storage', (): void => {
describe('without acl', (): void => {
const config = new DataAccessorBasedConfig(BASE,
new SparqlDataAccessor('http://localhost:4000/sparql', BASE, new SingleRootIdentifierStrategy(BASE)),
new SparqlDataAccessor('http://localhost:4000/sparql', new SingleRootIdentifierStrategy(BASE)),
INTERNAL_QUADS);
const handler = config.getHttpHandler();
const fileHelper = new FileTestHelper(handler, new URL(BASE));