Skip to content
This repository was archived by the owner on Feb 13, 2026. It is now read-only.

Commit 7186bf5

Browse files
authored
fix: fix BigQuery test record size (#86)
1 parent 7e2e715 commit 7186bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/io/kestra/plugin/singer/taps/BigQueryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void run() throws Exception {
6969

7070
assertThat(groupedByType.get(StreamType.SCHEMA).size(), is(1));
7171
assertThat(groupedByType.get(StreamType.SCHEMA).get(0).get("stream"), is("covid19_nyt_us_states"));
72-
assertThat(groupedByType.get(StreamType.RECORD).size(), is(61942));
72+
assertThat(groupedByType.get(StreamType.RECORD).size(), is(17));
7373
assertThat(groupedByType.get(StreamType.STATE).size(), is(2));
7474

7575
// rerun, since we have startAlwaysInclusive false, we won't retrieve any record

0 commit comments

Comments
 (0)