summaryrefslogtreecommitdiffstats
path: root/store/sql_session_store_test.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-07-21 08:36:11 -0800
committerJoram Wilander <jwawilander@gmail.com>2016-07-21 12:36:11 -0400
commit946302d9a29cbf5702da9e18a52b59864a18c69e (patch)
tree2cd2520fc57c2a0681cc938b5e1adcd7b01c8d44 /store/sql_session_store_test.go
parentbfa04c0ab0eca5d812ad64e5f51e95ec458cf0d3 (diff)
downloadchat-946302d9a29cbf5702da9e18a52b59864a18c69e.tar.gz
chat-946302d9a29cbf5702da9e18a52b59864a18c69e.tar.bz2
chat-946302d9a29cbf5702da9e18a52b59864a18c69e.zip
PLT-3691 Fixing mobile session (#3652)
* PLT-3691 Fixing mobile session * Fixing unit tests
Diffstat (limited to 'store/sql_session_store_test.go')
-rw-r--r--store/sql_session_store_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_session_store_test.go b/store/sql_session_store_test.go
index d7f07254d..e64a350ba 100644
--- a/store/sql_session_store_test.go
+++ b/store/sql_session_store_test.go
@@ -156,7 +156,7 @@ func TestSessionUpdateDeviceId(t *testing.T) {
s1.UserId = model.NewId()
Must(store.Session().Save(&s1))
- if rs1 := (<-store.Session().UpdateDeviceId(s1.Id, model.PUSH_NOTIFY_APPLE+":1234567890")); rs1.Err != nil {
+ if rs1 := (<-store.Session().UpdateDeviceId(s1.Id, model.PUSH_NOTIFY_APPLE+":1234567890", s1.ExpiresAt)); rs1.Err != nil {
t.Fatal(rs1.Err)
}
@@ -164,7 +164,7 @@ func TestSessionUpdateDeviceId(t *testing.T) {
s2.UserId = model.NewId()
Must(store.Session().Save(&s2))
- if rs2 := (<-store.Session().UpdateDeviceId(s2.Id, model.PUSH_NOTIFY_APPLE+":1234567890")); rs2.Err != nil {
+ if rs2 := (<-store.Session().UpdateDeviceId(s2.Id, model.PUSH_NOTIFY_APPLE+":1234567890", s1.ExpiresAt)); rs2.Err != nil {
t.Fatal(rs2.Err)
}
}