]> Cypherpunks repositories - gostls13.git/commitdiff
internal/trace: go fmt
authorMichael Pratt <mpratt@google.com>
Thu, 20 Nov 2025 21:25:40 +0000 (16:25 -0500)
committerMichael Pratt <mpratt@google.com>
Fri, 21 Nov 2025 18:51:35 +0000 (10:51 -0800)
Change-Id: I6a6a636c8f14008d3da6c526be10fa3386d4ec32
Reviewed-on: https://go-review.googlesource.com/c/go/+/722522
Auto-Submit: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
src/internal/trace/testtrace/helpers_test.go

index 526f8d6a8baab780d9c8e9cf845a3272bd5ba9e7..2fd4eedafdfcc3f1c2f7b7a42a1c5c73326852ad 100644 (file)
@@ -7,22 +7,22 @@ package testtrace
 import (
        "flag"
        "fmt"
-       "io"
        "internal/trace/raw"
+       "io"
        "os"
        "testing"
 )
 
 var (
        convert = flag.String("convert", "", "Path to trace text file to convert to binary format")
-       output = flag.String("out", "", "Output path for converted trace")
+       output  = flag.String("out", "", "Output path for converted trace")
 )
 
 // TestConvertDump is not actually a test, it is a tool for converting trace
 // text dumps generated by Dump into the binary trace format. Set -convert and
 // -o to perform a converison.
 //
-//  go test internal/trace/testtrace -convert in.tracetxt -out out.trace
+//     go test internal/trace/testtrace -convert in.tracetxt -out out.trace
 //
 // This would be cleaner as a dedicated internal command rather than a test,
 // but cmd/dist does not handle internal (non-distributed) commands in std