aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/internal/trace/testtrace/helpers.go2
-rw-r--r--src/internal/trace/testtrace/helpers_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/trace/testtrace/helpers.go b/src/internal/trace/testtrace/helpers.go
index ef676a9a14..c4c404a304 100644
--- a/src/internal/trace/testtrace/helpers.go
+++ b/src/internal/trace/testtrace/helpers.go
@@ -37,7 +37,7 @@ func Dump(t *testing.T, testName string, traceBytes []byte, forceToFile bool) {
t.Logf("text trace too large to dump (%d bytes)", len(s))
} else {
t.Log(s)
- t.Log("Convert this to a raw trace with `go test internal/trace/testtrace -covert in.tracetxt -out out.trace`")
+ t.Log("Convert this to a raw trace with `go test internal/trace/testtrace -convert in.tracetxt -out out.trace`")
}
} else {
// We asked to dump the trace or failed. Write the trace to a file.
diff --git a/src/internal/trace/testtrace/helpers_test.go b/src/internal/trace/testtrace/helpers_test.go
index 3b874ac631..526f8d6a8b 100644
--- a/src/internal/trace/testtrace/helpers_test.go
+++ b/src/internal/trace/testtrace/helpers_test.go
@@ -32,7 +32,7 @@ func TestConvertDump(t *testing.T) {
t.Skip("Set -convert to convert a trace text file")
}
if *output == "" {
- t.Fatal("Set -o to specify conversion output")
+ t.Fatal("Set -out to specify conversion output")
}
if err := convertDump(*convert, *output); err != nil {