Skip to content

Commit

Permalink
fix user test
Browse files Browse the repository at this point in the history
  • Loading branch information
pelazas committed Apr 29, 2024
1 parent 2c95bd8 commit 1ee4bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/userservice/util/test/createMultipleUsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async function createMultipleUsers(nUsers){
for (let index = 0; index < nUsers; index++) {
const newUser = new User({
username: `User ${index}`,
uuid: 'valid-uuid',
uuid: '550e8400-e29b-41d4-a716-446655440000',
password: 'XXXXXXXX'
});
users.push(newUser);
Expand Down

0 comments on commit 1ee4bc9

Please sign in to comment.