Skip to content

Commit

Permalink
fixed last_name to lastName in test/stub/stub-factory.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswangcodes committed Mar 20, 2024
1 parent 942d7a1 commit 9fad2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/test/stubs/stub-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class StubGen {
public static createUserDto(): CreateUserInternal {
return {
firstName: faker.name.firstName(),
last_name: faker.name.last_name(),
last_name: faker.name.lastName(),
email: faker.internet.email(),
password: 'Secret1234%',
email_verified: true,
Expand Down

0 comments on commit 9fad2cf

Please sign in to comment.