diff --git a/e2e/nextjs-app/test/ingest.spec.ts b/e2e/nextjs-app/test/ingest.spec.ts index 85fbc98e..0bde9955 100644 --- a/e2e/nextjs-app/test/ingest.spec.ts +++ b/e2e/nextjs-app/test/ingest.spec.ts @@ -36,7 +36,7 @@ describe('Ingestion & query on different runtime', () => { }); expect(qResp.status).toBeDefined(); expect(qResp.tables).toBeDefined(); - expect(qResp.tables).toHaveLength(2); + expect(qResp.tables).toHaveLength(1); expect(qResp.tables[0].columns).toHaveLength(2); expect(qResp.tables[0].columns[0].data.foo).toEqual('bar'); expect(qResp.tables[0].columns[1].data.bar).toEqual('baz'); @@ -58,7 +58,7 @@ describe('Ingestion & query on different runtime', () => { }); expect(qResp.status).toBeDefined(); expect(qResp.tables).toBeDefined(); - expect(qResp.tables).toHaveLength(2); + expect(qResp.tables).toHaveLength(1); expect(qResp.tables[0].columns).toHaveLength(2); expect(qResp.tables[0].columns[0].data.foo).toEqual('bar'); expect(qResp.tables[0].columns[1].data.bar).toEqual('baz');