Skip to content

Commit

Permalink
revert time creation back to numeric timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoiron committed Dec 4, 2013
1 parent c2c3862 commit 06331b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var rssOutput = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
</rss>`

func TestFeed(t *testing.T) {
now, _ := time.Parse("2006-01-02T15:04:05 MST", "2013-01-16T21:52:35 EST")
now, _ := time.Parse(time.RFC3339, "2013-01-16T21:52:35-05:00")
tz := time.FixedZone("EST", -5*60*60)
now = now.In(tz)

Expand Down

0 comments on commit 06331b2

Please sign in to comment.