Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,10 @@ def test_get_pipeline_graph_not_cached(self):
t.unique_name
for t in graph2._pipeline_proto.components.transforms.values()
]
self.assertIn('Map1', transform_names)
self.assertTrue(
any('Map1' in name for name in transform_names),
f"Expected 'Map1' in one of the transform names, got: {transform_names}"
)

def test_wait_for_completion_raises_exception_on_failure(self):
future = Future()
Expand Down
Loading