diff options
| author | Alan Donovan <adonovan@google.com> | 2023-04-19 18:48:00 -0400 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-04-20 01:07:29 +0000 |
| commit | 9d35ebba062cae9cc7bd716ad279ac7d44060a93 (patch) | |
| tree | 65616ae5f51f4c556dfacb2ae1f34bb00baf6844 /src/testing | |
| parent | 5c865c78c378548c282b22d96e6d0375079d4417 (diff) | |
| download | go-9d35ebba062cae9cc7bd716ad279ac7d44060a93.tar.xz | |
std: fix various nilness findings
Found by running
$ go run golang.org/x/tools/go/analysis/passes/nilness/cmd/nilness@latest std
No actual bugs--other than one panic(nil)--but a
few places where error nilness was unclear.
Change-Id: Ia916ba30f46f29c1bcf928cc62280169b922463a
Reviewed-on: https://go-review.googlesource.com/c/go/+/486675
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Alan Donovan <adonovan@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/example.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/testing/example.go b/src/testing/example.go index f618b06de1..42ee555cb2 100644 --- a/src/testing/example.go +++ b/src/testing/example.go @@ -93,8 +93,7 @@ func (eg *InternalExample) processRunResult(stdout string, timeSpent time.Durati if recovered != nil { // Propagate the previously recovered result, by panicking. panic(recovered) - } - if !finished && recovered == nil { + } else if !finished { panic(errNilPanicOrGoexit) } |
