File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
airbyte_cdk/test/standard_tests Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -318,8 +318,7 @@ def test_docker_image_build_and_read(
318318 discovered_catalog : AirbyteCatalog = parsed_output .catalog .catalog
319319 except Exception as ex :
320320 raise AssertionError (
321- f"Failed to load discovered catalog from discover command output. "
322- f"Error: { ex !s} "
321+ f"Failed to load discovered catalog from discover command output. Error: { ex !s} "
323322 ) from None
324323 if not discovered_catalog .streams :
325324 raise ValueError (
@@ -377,7 +376,11 @@ def test_docker_image_build_and_read(
377376 )
378377 if read_result .returncode != 0 :
379378 error_messages = (
380- [f"Error message: { error .trace .error .message } " for error in read_result .errors if error .trace and error .trace .error ]
379+ [
380+ f"Error message: { error .trace .error .message } "
381+ for error in read_result .errors
382+ if error .trace and error .trace .error
383+ ]
381384 if read_result .errors
382385 else ["No error messages found" ]
383386 )
You can’t perform that action at this time.
0 commit comments