We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87e97e5 commit 65e53b4Copy full SHA for 65e53b4
airbyte_cdk/manifest_runner/command_processor/processor.py
@@ -53,6 +53,8 @@ def test_read(
53
config=config,
54
configured_catalog=catalog,
55
state=state,
56
+ stream_name=catalog.streams[0].stream.name,
57
+ record_limit=record_limit,
58
)
59
60
return stream_read
unit_tests/manifest_runner/manifest_runner/test_runner.py
@@ -118,7 +118,9 @@ def test_test_read_success(
118
source=manifest_runner._source,
119
config=sample_config,
120
configured_catalog=sample_catalog,
121
+ stream_name="test_stream",
122
state=state_messages,
123
124
125
126
# Verify the result is returned correctly
0 commit comments