* TestAuth: improve test

This commit is contained in:
Simon Zolin 2020-04-24 14:04:36 +03:00
parent 2191c49161
commit 44353821e6

View file

@ -47,7 +47,7 @@ func TestAuth(t *testing.T) {
// add session with TTL = 2 sec
s = session{}
s.expire = uint32(now + 2)
s.expire = uint32(time.Now().UTC().Unix() + 2)
a.addSession(sess, &s)
assert.True(t, a.CheckSession(sessStr) == 0)
@ -59,7 +59,7 @@ func TestAuth(t *testing.T) {
// the session is still alive
assert.True(t, a.CheckSession(sessStr) == 0)
// reset our expiration time because CheckSession() has just updated it
s.expire = uint32(now + 2)
s.expire = uint32(time.Now().UTC().Unix() + 2)
a.storeSession(sess, &s)
a.Close()