Update rdf-transform-triple-to-quad tests (#41686)

The PR that adds rdf-transform-triple-to-quad conflicts with the
recent change to rdf-js, but both were merged about the same time, so CI
didn't catch the conflict.
This commit is contained in:
Nathan Shively-Sanders
2020-01-17 08:56:41 -08:00
committed by GitHub
parent 84518457f4
commit 40cdf3c059

View File

@@ -5,7 +5,7 @@ import { Readable, EventEmitter } from 'stream';
const inputStream: Stream & Readable = <any> {};
const graph: NamedNode = <any> {};
const factory: DataFactory = <any> {};
const sink: Sink = <any> {};
const sink: Sink<Stream, Stream> = <any> {};
const transformedStream1: TripleToQuadTransform = inputStream.pipe(new TripleToQuadTransform());
const transformedStream2: Stream = inputStream.pipe(new TripleToQuadTransform(graph));