summaryrefslogtreecommitdiffstats
path: root/api/auto_teams.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/auto_teams.go')
-rw-r--r--api/auto_teams.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/auto_teams.go b/api/auto_teams.go
index 082415d32..b2e1ace85 100644
--- a/api/auto_teams.go
+++ b/api/auto_teams.go
@@ -42,11 +42,11 @@ func (cfg *AutoTeamCreator) createRandomTeam() (*model.Team, bool) {
var teamDisplayName string
var teamName string
if cfg.Fuzzy {
- teamEmail = utils.FuzzEmail()
+ teamEmail = "success+" + model.NewId() + "simulator.amazonses.com"
teamDisplayName = utils.FuzzName()
teamName = utils.FuzzName()
} else {
- teamEmail = utils.RandomEmail(cfg.EmailLength, cfg.EmailCharset)
+ teamEmail = "success+" + model.NewId() + "simulator.amazonses.com"
teamDisplayName = utils.RandomName(cfg.NameLength, cfg.NameCharset)
teamName = utils.RandomName(cfg.NameLength, cfg.NameCharset) + model.NewId()
}