Skip to content

Commit

Permalink
fix: update Record assertions with correct stream name in test_record…
Browse files Browse the repository at this point in the history
…_selector

Co-Authored-By: [email protected] <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and natikgadzhi committed Feb 7, 2025
1 parent dde539e commit a9e1f3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_record_filter(test_name, field_path, filter_template, body, expected_da
)
)
assert actual_records == [
Record(data=data, associated_slice=stream_slice, stream_name="") for data in expected_data
Record(data=data, associated_slice=stream_slice, stream_name="test_stream") for data in expected_data
]

calls = []
Expand Down Expand Up @@ -210,7 +210,7 @@ def test_schema_normalization(test_name, schema, schema_transformation, body, ex
)
)

assert actual_records == [Record(data, stream_slice) for data in expected_data]
assert actual_records == [Record(data=data, associated_slice=stream_slice, stream_name="test_stream") for data in expected_data]


def create_response(body):
Expand Down

0 comments on commit a9e1f3e

Please sign in to comment.