From c74cb478a9ade40cd12e14630c46430041011f35 Mon Sep 17 00:00:00 2001 From: ksimuk Date: Thu, 6 Apr 2023 20:26:02 +0100 Subject: [PATCH] colors update --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 2ca3c00..255a9f5 100644 --- a/main.go +++ b/main.go @@ -101,7 +101,7 @@ func getFeedback(results gradescopeResult) string { failedTests := filterTests(results.Tests, false) passedTests := filterTests(results.Tests, true) if len(failedTests) > 0 { - output.WriteString("

") + output.WriteString("

") output.WriteString("Failed Tests
") for _, test := range failedTests { output.WriteString(fmt.Sprintf("%s (%.2f/%.2f)
", test.Name, test.Score, test.MaxScore)) @@ -113,7 +113,7 @@ func getFeedback(results gradescopeResult) string { } if len(passedTests) > 0 { - output.WriteString("

") + output.WriteString("

") output.WriteString("Passed Tests
") for _, test := range passedTests { output.WriteString(fmt.Sprintf("%s (%.2f/%.2f)
", test.Name, test.Score, test.MaxScore))