Skip to content

Commit

Permalink
[#1592] backend test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pzadroga committed Dec 17, 2024
1 parent f63c0c4 commit 738df79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/server/database/model/session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestUpdateDataSession(t *testing.T) {
require.Len(t, sessions, 1)
require.Equal(t, "foo", sessions[0].Token)
require.Equal(t, []byte("baz"), sessions[0].Data)
require.Equal(t, expireTime, sessions[0].Expiry)
require.True(t, expireTime.Equal(sessions[0].Expiry))
}

func TestUpdateExpireTimeSession(t *testing.T) {
Expand Down

0 comments on commit 738df79

Please sign in to comment.