Apply suggestions from code review

Co-authored-by: Phil Davis <phil@jankaritech.com>
This commit is contained in:
Michael Barz
2024-04-29 12:04:05 +02:00
committed by GitHub
co-authored by Phil Davis
parent 5ad77f7dee
commit 5ae4d5646b
2 changed files with 2 additions and 2 deletions
@@ -44,7 +44,7 @@ import "testing"
func TestDivide3(t *testing.T) {
result := IsDivisible(3)
if result != "Yes" {
t.Errorf("Result was incorrect, got: %s, want: %s.", result, "Foo")
t.Errorf("Result was incorrect, got: %s, want: %s.", result, "Yes")
}
}
```