mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
ci: Fix new user patching endpoint tests (no-changelog) (#7816)
user ids are uuids, and in the future we should add proper input validation to prevent invalid user ids reaching the DB like this.
This commit is contained in:
parent
152883eed1
commit
1b60cfb8f1
|
@ -499,7 +499,9 @@ describe('PATCH /users/:id/role', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should receive 404 on unknown target user', async () => {
|
test('should receive 404 on unknown target user', async () => {
|
||||||
const response = await authAdminAgent.patch('/users/99999/role').send({
|
const response = await authAdminAgent
|
||||||
|
.patch('/users/c2317ff3-7a9f-4fd4-ad2b-7331f6359260/role')
|
||||||
|
.send({
|
||||||
newRole: { scope: 'global', name: 'member' },
|
newRole: { scope: 'global', name: 'member' },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue