projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd19d0c
)
Add additional details to date test cases.
author
Noah Campbell
<noahcampbell@gmail.com>
Mon, 12 Aug 2013 04:03:04 +0000
(21:03 -0700)
committer
Noah Campbell
<noahcampbell@gmail.com>
Mon, 12 Aug 2013 16:14:30 +0000
(09:14 -0700)
hugolib/page_test.go
patch
|
blob
|
history
diff --git
a/hugolib/page_test.go
b/hugolib/page_test.go
index bac3a95e66de463955b4c9fb684d628d83308e93..3e6db411bb32bd623aea30312c207ea63bdc38e8 100644
(file)
--- 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)
}
}
}