diff --git a/handwritten/firestore/dev/conformance/runner.ts b/handwritten/firestore/dev/conformance/runner.ts index 54bf22e77d4d..8acd520a4822 100644 --- a/handwritten/firestore/dev/conformance/runner.ts +++ b/handwritten/firestore/dev/conformance/runner.ts @@ -312,8 +312,6 @@ function getHandler(spec: ConformanceProto) { } function runTest(spec: ConformanceProto) { - console.log(`Running Spec:\n${JSON.stringify(spec, null, 2)}\n`); - const updateTest = (spec: ConformanceProto) => { const overrides = {commit: commitHandler(spec)}; return createInstance(overrides).then(() => { diff --git a/handwritten/firestore/dev/system-test/firestore.ts b/handwritten/firestore/dev/system-test/firestore.ts index a85ed7f41b42..de94e15ad54d 100644 --- a/handwritten/firestore/dev/system-test/firestore.ts +++ b/handwritten/firestore/dev/system-test/firestore.ts @@ -1946,8 +1946,8 @@ describe('runs query on a large collection', () => { let randomCol: CollectionReference; beforeEach(async () => { - firestore = new Firestore({}); - randomCol = getTestRoot(firestore); + randomCol = getTestRoot(); + firestore = randomCol.firestore; const promises: Array>> = []; for (let i = 0; i < 1000; i++) {