Skip to content

Commit 75469db

Browse files
committed
fix: Remove redundant newline in fmt.Println call
Remove redundant \n from fmt.Println string literal (fmt.Println already adds newline) Signed-off-by: Guy Girmonsky <guygir@gmail.com>
1 parent 7445897 commit 75469db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/multi_modality/test_e2e_multimodality.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func convertContentToPreprocessingFormat(content types.Content) interface{} {
4545
}
4646

4747
func main() {
48-
fmt.Println("=== End-to-End Multi-Modality Pipeline Test ===\n")
48+
fmt.Println("=== End-to-End Multi-Modality Pipeline Test ===")
4949

5050
// Test 1: Image URL format
5151
testImageURL := map[string]any{

0 commit comments

Comments
 (0)