Skip to content

Commit 0c8f273

Browse files
committed
fix userids
1 parent 380e818 commit 0c8f273

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test-team/helpers/auth/cognito-auth-helper.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,35 +35,35 @@ export const testUsers = {
3535
* User2 provides an alternative user allowing to check for things like template ownership
3636
*/
3737
User2: {
38-
userId: 'User1',
38+
userId: 'User2',
3939
clientId: 'Client1',
4040
},
4141
/**
4242
* User3 idle user that stays stayed in
4343
*/
4444
User3: {
45-
userId: 'User1',
45+
userId: 'User3',
4646
clientId: 'Client1',
4747
},
4848
/**
4949
* User4 idle user which signs out automatically
5050
*/
5151
User4: {
52-
userId: 'User1',
52+
userId: 'User4',
5353
clientId: 'Client1',
5454
},
5555
/**
5656
* User5 idle user which signs out manually
5757
*/
5858
User5: {
59-
userId: 'User1',
59+
userId: 'User5',
6060
clientId: 'Client1',
6161
},
6262
/**
6363
* User6 does not belong to a client
6464
*/
6565
User6: {
66-
userId: 'User1',
66+
userId: 'User6',
6767
clientId: undefined,
6868
},
6969
} as const satisfies Record<string, TestUserStaticDetails>;

0 commit comments

Comments
 (0)