File tree 1 file changed +6
-2
lines changed
tests/unit/sagemaker/experiments
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -655,7 +655,9 @@ def test_log_multiple_input_artifacts(run_obj):
655
655
run_obj .log_file (
656
656
file_path , "name" + str (index ), "whizz/bang" + str (index ), is_output = False
657
657
)
658
- run_obj ._artifact_uploader .upload_artifact .assert_called_with (file_path , extra_args = None )
658
+ run_obj ._artifact_uploader .upload_artifact .assert_called_with (
659
+ file_path , extra_args = None
660
+ )
659
661
660
662
run_obj ._artifact_uploader .upload_artifact .return_value = (
661
663
"s3uri_value" ,
@@ -680,7 +682,9 @@ def test_log_multiple_output_artifacts(run_obj):
680
682
"etag_value" + str (index ),
681
683
)
682
684
run_obj .log_file (file_path , "name" + str (index ), "whizz/bang" + str (index ))
683
- run_obj ._artifact_uploader .upload_artifact .assert_called_with (file_path , extra_args = None )
685
+ run_obj ._artifact_uploader .upload_artifact .assert_called_with (
686
+ file_path , extra_args = None
687
+ )
684
688
685
689
run_obj ._artifact_uploader .upload_artifact .return_value = (
686
690
"s3uri_value" ,
You can’t perform that action at this time.
0 commit comments