mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-22 20:12:17 +00:00
fix zero date
This commit is contained in:
parent
b336abcf81
commit
acf9561a31
2 changed files with 2 additions and 3 deletions
|
@ -159,7 +159,6 @@ func newPage(filename string) *Page {
|
|||
Params: make(map[string]interface{})}
|
||||
|
||||
jww.DEBUG.Println("Reading from", page.File.FileName)
|
||||
page.Date, _ = time.Parse("20060102", "20080101")
|
||||
page.guessSection()
|
||||
return &page
|
||||
}
|
||||
|
|
|
@ -533,8 +533,8 @@ func TestGroupedPages(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("Unable to make PageGroup array: %s", err)
|
||||
}
|
||||
if bydate[0].Key != "2008-01" {
|
||||
t.Errorf("PageGroup array in unexpected order. First group key should be '%s', got '%s'", "2008-01", bydate[0].Key)
|
||||
if bydate[0].Key != "0001-01" {
|
||||
t.Errorf("PageGroup array in unexpected order. First group key should be '%s', got '%s'", "0001-01", bydate[0].Key)
|
||||
}
|
||||
if bydate[1].Key != "2012-01" {
|
||||
t.Errorf("PageGroup array in unexpected order. Second group key should be '%s', got '%s'", "2012-01", bydate[1].Key)
|
||||
|
|
Loading…
Reference in a new issue