From: Noah Campbell Date: Mon, 12 Aug 2013 04:03:04 +0000 (-0700) Subject: Add additional details to date test cases. X-Git-Tag: v0.9~169^2~2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f610d45c;p=brevno-suite%2Fhugo Add additional details to date test cases. --- diff --git a/hugolib/page_test.go b/hugolib/page_test.go index bac3a95e..3e6db411 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -247,7 +247,8 @@ func TestParsingDateInFrontMatter(t *testing.T) { t.Fatalf("Expected to be able to parse page.") } if !dt.Equal(p.Date) { - t.Errorf("Date does not equal frontmatter:\n%s\nGot: %s. Diff: %s", test.buf, p.Date, dt.Sub(p.Date)) + //if dt != p.Date { + t.Errorf("Date does not equal frontmatter:\n%s\nExpecting: %s\n Got: %s. Diff: %s\n internal: %#v\n %#v", test.buf, dt, p.Date, dt.Sub(p.Date), dt, p.Date) } } }