From 85e610e3045950b8688a7a506b37a2a92ac7445c Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Wed, 11 Apr 2018 10:08:13 -0700 Subject: [PATCH] cmd/go: fix a typo in test inputs descriptor Presumably each line in the descriptor should match the corresponding operation. --- src/cmd/go/internal/test/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/go/internal/test/test.go b/src/cmd/go/internal/test/test.go index b82484a12c..7244717d73 100644 --- a/src/cmd/go/internal/test/test.go +++ b/src/cmd/go/internal/test/test.go @@ -1487,7 +1487,7 @@ func computeTestInputsID(a *work.Action, testlog []byte) (cache.ActionID, error) fmt.Fprintf(h, "env %s %x\n", name, hashGetenv(name)) case "chdir": pwd = name // always absolute - fmt.Fprintf(h, "cbdir %s %x\n", name, hashStat(name)) + fmt.Fprintf(h, "chdir %s %x\n", name, hashStat(name)) case "stat": if !filepath.IsAbs(name) { name = filepath.Join(pwd, name)