diff options
| author | Russ Cox <rsc@golang.org> | 2021-02-19 18:54:42 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2021-02-20 03:31:48 +0000 |
| commit | 5ea612d1eb830b38bc4e914e37f55311eb58adce (patch) | |
| tree | 273a278dab6c87b85e66b858f564b0bc8a33ba5b /ssh/test/session_test.go | |
| parent | b8e89b74b9df40d0d1cd96f441924c545d8d0dea (diff) | |
| download | go-x-crypto-5ea612d1eb830b38bc4e914e37f55311eb58adce.tar.xz | |
all: go fmt ./...
Make all our package sources use Go 1.17 gofmt format
(adding //go:build lines).
Not strictly necessary but will avoid spurious changes
as files are edited.
Part of //go:build change (#41184).
See https://golang.org/design/draft-gobuild
Change-Id: I70526bf588bf4078887e567795867ece785d666b
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/294415
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jason A. Donenfeld <Jason@zx2c4.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'ssh/test/session_test.go')
| -rw-r--r-- | ssh/test/session_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ssh/test/session_test.go b/ssh/test/session_test.go index e363869..d66509b 100644 --- a/ssh/test/session_test.go +++ b/ssh/test/session_test.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build !windows && !solaris && !js // +build !windows,!solaris,!js package test |
