Skip to content

Commit a8d9fb2

Browse files
committed
cmd/internal/moddeps: fix typo in TestAllDependencies log messages
s/dependecies/dependencies/ Change-Id: I454668a36192e345965173d76be12cbd5917ea34 Reviewed-on: https://go-review.googlesource.com/c/go/+/301849 Trust: Tobias Klauser <[email protected]> Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent c4190fc commit a8d9fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/internal/moddeps/moddeps_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func TestAllDependencies(t *testing.T) {
6161
_, err := cmd.Output()
6262
if err != nil {
6363
t.Errorf("%s: %v\n%s", strings.Join(cmd.Args, " "), err, cmd.Stderr)
64-
t.Logf("(Run 'go mod vendor' in %s to ensure that dependecies have been vendored.)", m.Dir)
64+
t.Logf("(Run 'go mod vendor' in %s to ensure that dependencies have been vendored.)", m.Dir)
6565
}
6666
return
6767
}
@@ -179,7 +179,7 @@ func TestAllDependencies(t *testing.T) {
179179
r.run(t, goBinCopy, "generate", `-run=^//go:generate bundle `, pkgs) // See issue 41409.
180180
advice := "$ cd " + m.Dir + "\n" +
181181
"$ go mod tidy # to remove extraneous dependencies\n" +
182-
"$ go mod vendor # to vendor dependecies\n" +
182+
"$ go mod vendor # to vendor dependencies\n" +
183183
"$ go generate -run=bundle " + pkgs + " # to regenerate bundled packages\n"
184184
if m.Path == "std" {
185185
r.run(t, goBinCopy, "generate", "syscall", "internal/syscall/...") // See issue 43440.

0 commit comments

Comments
 (0)