1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 00:45:24 +00:00

Fix time usage in timed_map_test

This commit is contained in:
V2Ray 2015-09-23 20:24:30 +02:00
parent 99f32f1dbf
commit 70ad3d0174

View File

@ -41,7 +41,7 @@ func TestTimedStringMap(t *testing.T) {
v2, ok = m.Get("Key2")
assert.Bool(ok).IsFalse()
m.Set("Key1", "Value1", nowSec+10)
m.Set("Key1", "Value1", time.Now().UTC().Unix()+10)
v1, ok = m.Get("Key1")
assert.Bool(ok).IsTrue()
assert.String(v1.(string)).Equals("Value1")