From d5f7bef6614a367dc6b555de644ed5e881244dcb Mon Sep 17 00:00:00 2001 From: Lachlan Robertson <99315596+sc-lachlanrobertson@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:33:43 +1000 Subject: [PATCH] Fix typo when replacing go test with gotestsum Very minor change to update the `go testsum` command to `gotestsum` (no space). Without it go will complain about the `testsum` command not being found. This is correct in the example underneath, so this is just a consistency change. --- pages/test_analytics/golang_collectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/test_analytics/golang_collectors.md b/pages/test_analytics/golang_collectors.md index 8a09c8d3a9..ad07667da7 100644 --- a/pages/test_analytics/golang_collectors.md +++ b/pages/test_analytics/golang_collectors.md @@ -12,7 +12,7 @@ To use Test Analytics with your [Go](https://go.dev/) language projects use [got go install gotest.tools/gotestsum@latest ``` -2. Use gotestsum to run your tests and output JUnit XML, by replacing `go test` with `go testsum`, for example: +2. Use gotestsum to run your tests and output JUnit XML, by replacing `go test` with `gotestsum`, for example: ```sh gotestsum --junitfile junit.xml ./...