diff options
Diffstat (limited to 'registry/fetch_test.go')
-rw-r--r-- | registry/fetch_test.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/registry/fetch_test.go b/registry/fetch_test.go index 4eab2a4..0bf7920 100644 --- a/registry/fetch_test.go +++ b/registry/fetch_test.go @@ -273,14 +273,3 @@ var timestampCases = []struct { expected: "2020-01-14T00:19:45.092344Z", }, } - -func Test_fixTimestamp(t *testing.T) { - for _, tt := range timestampCases { - t.Run(tt.name, func(t *testing.T) { - tsout := fixTimestamp(tt.orig) - if tsout != tt.expected { - t.Errorf("Failed :: %s :: got %s expected %s", tt.name, tsout, tt.expected) - } - }) - } -} |