Commit 6f0ef845 authored by Robert Hencke's avatar Robert Hencke Committed by Adam Langley

asn1: fix incorrect prints found by govet

R=golang-dev
CC=golang-dev
https://golang.org/cl/5449063
parent cf4acf80
...@@ -225,19 +225,19 @@ func TestUTCTime(t *testing.T) { ...@@ -225,19 +225,19 @@ func TestUTCTime(t *testing.T) {
ret, err := parseUTCTime([]byte(test.in)) ret, err := parseUTCTime([]byte(test.in))
if err != nil { if err != nil {
if test.ok { if test.ok {
t.Errorf("#%d: parseUTCTime(%q) = error %v", i, err) t.Errorf("#%d: parseUTCTime(%q) = error %v", i, test.in, err)
} }
continue continue
} }
if !test.ok { if !test.ok {
t.Errorf("#%d: parseUTCTime(%q) succeeded, should have failed", i) t.Errorf("#%d: parseUTCTime(%q) succeeded, should have failed", i, test.in)
continue continue
} }
const format = "Jan _2 15:04:05 -0700 2006" // ignore zone name, just offset const format = "Jan _2 15:04:05 -0700 2006" // ignore zone name, just offset
have := ret.Format(format) have := ret.Format(format)
want := test.out.Format(format) want := test.out.Format(format)
if have != want { if have != want {
t.Errorf("#%d: parseUTCTime(%q) = %s, want %s", test.in, have, want) t.Errorf("#%d: parseUTCTime(%q) = %s, want %s", i, test.in, have, want)
} }
} }
} }
......
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