Commit 3faa490f authored by Robert Hencke's avatar Robert Hencke Committed by Brad Fitzpatrick

pkg: fix new incorrect prints found by govet

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/4539063
parent 4fb58575
......@@ -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++
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment