Skip to content

Commit

Permalink
internal/vulncheck/internal/gosym: fix typo
Browse files Browse the repository at this point in the history
Causes a test failure that breaks the longtest build. Which I guess only
runs on LUCI.

Change-Id: If40b6dea9c97124ee594c2ddf10ebd996b929971
Reviewed-on: https://go-review.googlesource.com/c/vuln/+/518715
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Run-TryBot: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Commit-Queue: Heschi Kreinick <heschi@google.com>
Auto-Submit: Heschi Kreinick <heschi@google.com>
  • Loading branch information
heschi authored and gopherbot committed Aug 11, 2023
1 parent 91424c7 commit 242ecf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/vulncheck/internal/gosym/additions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestFuncSymName(t *testing.T) {
{"go1.20", funcSymNameGo120},
{"devel bd56cb90a72e6725e", funcSymNameGo120},
{"go1.21", funcSymNameGo120},
{"unkown version", funcSymNameGo120},
{"unknown version", funcSymNameGo120},
} {
if got := FuncSymName(test.v); got != test.want {
t.Errorf("got %s; want %s", got, test.want)
Expand Down

0 comments on commit 242ecf7

Please sign in to comment.