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 a8af1a3 commit 43a1651Copy full SHA for 43a1651
unit_tests/sources/declarative/resolvers/test_http_components_resolver.py
@@ -528,4 +528,8 @@ def test_dynamic_streams_with_http_components_resolver_retriever_with_parent_str
528
assert len(actual_catalog.streams) == 4
529
assert [stream.name for stream in actual_catalog.streams] == expected_stream_names
530
assert len(records) == 4
531
- assert [record.stream for record in records] == expected_stream_names
+
532
+ actual_record_stream_names = [record.stream for record in records]
533
+ actual_record_stream_names.sort()
534
535
+ assert actual_record_stream_names == expected_stream_names
0 commit comments