summaryrefslogtreecommitdiffstats
path: root/model/user_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/user_test.go')
-rw-r--r--model/user_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/model/user_test.go b/model/user_test.go
index 3eb931f5d..fc153248f 100644
--- a/model/user_test.go
+++ b/model/user_test.go
@@ -97,9 +97,9 @@ func TestUserIsValid(t *testing.T) {
t.Fatal()
}
- user.Username = "n" + NewId()
- user.Email = strings.Repeat("a", 129)
- if err := user.IsValid(); !HasExpectedUserIsValidError(err, "email", user.Id) {
+ user.Username = NewId()
+ user.Email = strings.Repeat("01234567890", 20)
+ if err := user.IsValid(); err == nil {
t.Fatal()
}
@@ -204,9 +204,9 @@ var usernames = []struct {
{"spin-punch", true},
{"sp", true},
{"s", true},
- {"1spin-punch", false},
- {"-spin-punch", false},
- {".spin-punch", false},
+ {"1spin-punch", true},
+ {"-spin-punch", true},
+ {".spin-punch", true},
{"Spin-punch", false},
{"spin punch-", false},
{"spin_punch", true},