diff options
author | mrsdizzie <info@mrsdizzie.com> | 2019-03-26 17:14:22 -0400 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-03-26 21:14:22 +0000 |
commit | 63f6764dce5081f389b6fed9d5839a663e47c791 (patch) | |
tree | a748e077e5d311ce39b69955e81b920f4c1d77e2 /integrations | |
parent | 0bf7ed55be3f1b51db961206bda69e48184a41b7 (diff) | |
download | gitea-63f6764dce5081f389b6fed9d5839a663e47c791.tar.gz gitea-63f6764dce5081f389b6fed9d5839a663e47c791.zip |
Clean up ref name rules (#6437) (#6439)
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/repo_branch_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/repo_branch_test.go b/integrations/repo_branch_test.go index fb33778cde..3101dc4c0f 100644 --- a/integrations/repo_branch_test.go +++ b/integrations/repo_branch_test.go @@ -58,7 +58,7 @@ func TestCreateBranch(t *testing.T) { OldRefSubURL: "branch/master", NewBranch: "feature=test1", ExpectedStatus: http.StatusFound, - FlashMessage: i18n.Tr("en", "form.NewBranchName") + i18n.Tr("en", "form.git_ref_name_error"), + FlashMessage: i18n.Tr("en", "repo.branch.create_success", "feature=test1"), }, { OldRefSubURL: "branch/master", |