Add additional details to date test cases.
authorNoah Campbell <noahcampbell@gmail.com>
Mon, 12 Aug 2013 04:03:04 +0000 (21:03 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Mon, 12 Aug 2013 16:14:30 +0000 (09:14 -0700)
hugolib/page_test.go

index bac3a95e66de463955b4c9fb684d628d83308e93..3e6db411bb32bd623aea30312c207ea63bdc38e8 100644 (file)
@@ -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)
                }
        }
 }