diff --git a/docs/ocis/development/unit-testing/testing-ginkgo.md b/docs/ocis/development/unit-testing/testing-ginkgo.md index b4357566e..1617bdd07 100644 --- a/docs/ocis/development/unit-testing/testing-ginkgo.md +++ b/docs/ocis/development/unit-testing/testing-ginkgo.md @@ -73,7 +73,7 @@ With the bootstrap complete, you can now run your tests using the `ginkgo` comma ```bash ginkgo -Running Suite: Parser Suite - /ocis/ocis-pkg/config/parser +Running Suite: Parser Suite - /ocis/ocis-pkg/config/parser =============================================================================================== Random Seed: 1714076559 diff --git a/docs/ocis/development/unit-testing/testing-pkg.md b/docs/ocis/development/unit-testing/testing-pkg.md index 1d39d5efe..8c5161005 100644 --- a/docs/ocis/development/unit-testing/testing-pkg.md +++ b/docs/ocis/development/unit-testing/testing-pkg.md @@ -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") } } ```