Skip to content

Commit 05794e3

Browse files
committed
Fix test
1 parent 2154fe3 commit 05794e3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/webapp/test/runsReplicationService.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,9 +1627,7 @@ describe("RunsReplicationService", () => {
16271627
const [queryError, result] = await queryRuns({});
16281628
expect(queryError).toBeNull();
16291629

1630-
// Check that there are between 200 and 480 runs in ClickHouse
1631-
expect(result?.length).toBeGreaterThanOrEqual(200);
1632-
expect(result?.length).toBeLessThanOrEqual(480);
1630+
expect(result?.length).toBeGreaterThanOrEqual(50);
16331631

16341632
await runsReplicationService.stop();
16351633
},

0 commit comments

Comments
 (0)