mirror of
https://github.com/golang/go
synced 2024-11-21 15:34:45 -07:00
pkg: fix new incorrect prints found by govet
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4539063
This commit is contained in:
parent
4fb5857596
commit
3faa490f89
@ -291,14 +291,14 @@ func TestParseCertificateWithDsaPublicKey(t *testing.T) {
|
||||
pemBlock, _ := pem.Decode([]byte(dsaCertPem))
|
||||
cert, err := ParseCertificate(pemBlock.Bytes)
|
||||
if err != nil {
|
||||
t.Fatal("Failed to parse certificate: %s", err)
|
||||
t.Fatalf("Failed to parse certificate: %s", err)
|
||||
}
|
||||
if cert.PublicKeyAlgorithm != DSA {
|
||||
t.Errorf("Parsed key algorithm was not DSA")
|
||||
}
|
||||
parsedKey, ok := cert.PublicKey.(*dsa.PublicKey)
|
||||
if !ok {
|
||||
t.Fatal("Parsed key was not a DSA key: %s", err)
|
||||
t.Fatalf("Parsed key was not a DSA key: %s", err)
|
||||
}
|
||||
if expectedKey.Y.Cmp(parsedKey.Y) != 0 ||
|
||||
expectedKey.P.Cmp(parsedKey.P) != 0 ||
|
||||
|
@ -243,7 +243,7 @@ func smallReaddirnames(file *File, length int, t *testing.T) []string {
|
||||
t.Fatalf("readdirnames %q failed: %v", file.Name(), err)
|
||||
}
|
||||
if len(d) == 0 {
|
||||
t.Fatalf("readdirnames %q returned empty slice and no error")
|
||||
t.Fatalf("readdirnames %q returned empty slice and no error", file.Name())
|
||||
}
|
||||
names[count] = d[0]
|
||||
count++
|
||||
|
Loading…
Reference in New Issue
Block a user