summaryrefslogtreecommitdiffstats
path: root/api/user_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/user_test.go')
-rw-r--r--api/user_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/user_test.go b/api/user_test.go
index 56064232b..96d1fd3d0 100644
--- a/api/user_test.go
+++ b/api/user_test.go
@@ -508,7 +508,7 @@ func TestGetUser(t *testing.T) {
t.Fatal("shouldn't have accss")
}
- UpdateUserRoles(ruser.Data.(*model.User), model.ROLE_SYSTEM_ADMIN.Id)
+ app.UpdateUserRoles(ruser.Data.(*model.User).Id, model.ROLE_SYSTEM_ADMIN.Id)
Client.Login(user.Email, "passwd1")
@@ -1226,7 +1226,7 @@ func TestUserPermDelete(t *testing.T) {
c.RequestId = model.NewId()
c.IpAddress = "test"
- err := PermanentDeleteUser(user1)
+ err := app.PermanentDeleteUser(user1)
if err != nil {
t.Fatal(err)
}