mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-21 00:36:25 -05:00
Fix time usage in timed_map_test
This commit is contained in:
parent
99f32f1dbf
commit
70ad3d0174
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user