summaryrefslogtreecommitdiffstats
path: root/api4/user_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/user_test.go')
-rw-r--r--api4/user_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/api4/user_test.go b/api4/user_test.go
index 405102373..b99011aeb 100644
--- a/api4/user_test.go
+++ b/api4/user_test.go
@@ -3069,20 +3069,20 @@ func TestGetUsersByStatus(t *testing.T) {
})
}
-func TestRegisterServiceTermsAction(t *testing.T) {
+func TestRegisterTermsOfServiceAction(t *testing.T) {
th := Setup().InitBasic()
defer th.TearDown()
Client := th.Client
- success, resp := Client.RegisterServiceTermsAction(th.BasicUser.Id, "st_1", true)
- CheckErrorMessage(t, resp, "store.sql_service_terms_store.get.no_rows.app_error")
+ success, resp := Client.RegisteTermsOfServiceAction(th.BasicUser.Id, "st_1", true)
+ CheckErrorMessage(t, resp, "store.sql_terms_of_service_store.get.no_rows.app_error")
- serviceTerms, err := th.App.CreateServiceTerms("service terms", th.BasicUser.Id)
+ termsOfService, err := th.App.CreateTermsOfService("terms of service", th.BasicUser.Id)
if err != nil {
t.Fatal(err)
}
- success, resp = Client.RegisterServiceTermsAction(th.BasicUser.Id, serviceTerms.Id, true)
+ success, resp = Client.RegisteTermsOfServiceAction(th.BasicUser.Id, termsOfService.Id, true)
CheckNoError(t, resp)
assert.True(t, *success)
@@ -3091,5 +3091,5 @@ func TestRegisterServiceTermsAction(t *testing.T) {
t.Fatal(err)
}
- assert.Equal(t, user.AcceptedServiceTermsId, serviceTerms.Id)
+ assert.Equal(t, user.AcceptedTermsOfServiceId, termsOfService.Id)
}