Skip to content

Commit 43a1651

Browse files
updated unit tests
1 parent a8af1a3 commit 43a1651

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

unit_tests/sources/declarative/resolvers/test_http_components_resolver.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,4 +528,8 @@ def test_dynamic_streams_with_http_components_resolver_retriever_with_parent_str
528528
assert len(actual_catalog.streams) == 4
529529
assert [stream.name for stream in actual_catalog.streams] == expected_stream_names
530530
assert len(records) == 4
531-
assert [record.stream for record in records] == expected_stream_names
531+
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

Comments
 (0)