Mm 16623 fix all initialism errors in channels/app and channels/api4 and /store dir (#25787)

Этот коммит содержится в:
Matthew Straughn
2024-01-22 08:35:16 -05:00
коммит произвёл GitHub
родитель 2415438d88
Коммит ae33de57ff
22 изменённых файлов: 117 добавлений и 117 удалений

Просмотреть файл

@@ -27,7 +27,7 @@ func TestCheckIfRolesGrantPermission(t *testing.T) {
cases := []struct {
roles []string
permissionId string
permissionID string
shouldGrant bool
}{
{[]string{model.SystemAdminRoleId}, model.PermissionManageSystem.Id, true},
@@ -43,7 +43,7 @@ func TestCheckIfRolesGrantPermission(t *testing.T) {
}
for _, testcase := range cases {
require.Equal(t, th.App.RolesGrantPermission(testcase.roles, testcase.permissionId), testcase.shouldGrant)
require.Equal(t, th.App.RolesGrantPermission(testcase.roles, testcase.permissionID), testcase.shouldGrant)
}
}