Merge: * TestAuth: improve test

* commit '44353821e6bf99839dac15f0049a3335c0376258':
  * TestAuth: improve test
This commit is contained in:
Simon Zolin 2020-04-24 15:37:35 +03:00
commit 8ab6fa3300
1 changed files with 2 additions and 2 deletions

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()