diff options
Diffstat (limited to 'integrations/user_test.go')
-rw-r--r-- | integrations/user_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/user_test.go b/integrations/user_test.go index da39234c3b..0b59663a4f 100644 --- a/integrations/user_test.go +++ b/integrations/user_test.go @@ -92,7 +92,7 @@ func TestRenameReservedUsername(t *testing.T) { htmlDoc := NewHTMLParser(t, resp.Body) assert.Contains(t, htmlDoc.doc.Find(".ui.negative.message").Text(), - i18n.Tr("en", "user.newName_reserved"), + i18n.Tr("en", "user.form.name_reserved", reservedUsername), ) models.AssertNotExistsBean(t, &models.User{Name: reservedUsername}) |