Skip to content

Commit

Permalink
Update .nextRelease to match latest 1.3 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
keitharm committed Oct 16, 2019
1 parent 5ec863b commit e0e221b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/.nextRelease/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class Generator {
timezone
});

this.include('email', tr.transliterate(name[0]) + '.' + tr.transliterate(name[1]).replace(/ /g, '') + '@example.com');
this.include('email', tr.transliterate(`${name[0]}.${name[1]}`).replace(/ /g, '').toLowerCase() + '@example.com');

let salt = random(2, 8);
let password = this.password === undefined ? randomItem(this.datasets.common.passwords) : this.genPassword();
Expand Down

0 comments on commit e0e221b

Please sign in to comment.