Commit 914b6fa9 authored by miraclesu's avatar miraclesu

Fix utils test fail

parent 69096b09
...@@ -8,11 +8,12 @@ import ( ...@@ -8,11 +8,12 @@ import (
func TestWebTime(t *testing.T) { func TestWebTime(t *testing.T) {
ts := "Fri, 26 Jul 2013 12:27:42 CST" ts := "Fri, 26 Jul 2013 12:27:42 CST"
tt, _ := time.Parse(time.RFC1123, ts) l, _ := time.LoadLocation("GST")
tt, _ := time.ParseInLocation(time.RFC1123, ts, l)
if ts != webTime(tt) { if ts != webTime(tt) {
t.Error("should be equal") t.Error("should be equal")
} }
if "Fri, 26 Jul 2013 04:27:42 GMT" != webTime(tt.UTC()) { if "Fri, 26 Jul 2013 12:27:42 GMT" != webTime(tt.UTC()) {
t.Error("should be equal") t.Error("should be equal")
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment