aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/bisect
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-07-05 09:46:57 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-07-05 10:55:16 +0200
commit3940e7a64fa27c338ca1283b8f90143412b281ba (patch)
treed61a0a5ffed79c2f33c641836cdb609770ba6b2c /pkg/bisect
parent37d770b0c35b662abb4a67cb4ddca6f21150ea4f (diff)
all: fix log/error text starting with capital letter
Update #1876
Diffstat (limited to 'pkg/bisect')
-rw-r--r--pkg/bisect/bisect_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bisect/bisect_test.go b/pkg/bisect/bisect_test.go
index a7462a3b1..e60da3aed 100644
--- a/pkg/bisect/bisect_test.go
+++ b/pkg/bisect/bisect_test.go
@@ -42,7 +42,7 @@ func (env *testEnv) BuildKernel(compilerBin, userspaceDir, cmdlineFile, sysctlFi
}
env.config = string(kernelConfig)
if env.config == "baseline-fails" || env.config == "broken-build" {
- return "", kernelSign, fmt.Errorf("Failure")
+ return "", kernelSign, fmt.Errorf("failure")
}
return "", kernelSign, nil
}