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
parent 5ad77f7dee
commit 5ae4d5646b
2 changed files with 2 additions and 2 deletions
@@ -73,7 +73,7 @@ With the bootstrap complete, you can now run your tests using the `ginkgo` comma
```bash
ginkgo
Running Suite: Parser Suite - <loca-path>/ocis/ocis-pkg/config/parser
Running Suite: Parser Suite - <local-path>/ocis/ocis-pkg/config/parser
===============================================================================================
Random Seed: 1714076559
@@ -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")
}
}
```