diff options
author | 6543 <6543@obermui.de> | 2020-12-04 07:20:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 08:20:30 +0200 |
commit | 48a3bb7a32bb4e7e5a31cfeb4ca324621c417527 (patch) | |
tree | 8cab01bb2a7b48c323c11ddcd574f67283a0468c /integrations/xss_test.go | |
parent | 3512c7e40f0b06f9f495a919e0d4925e5688e2da (diff) | |
download | gitea-48a3bb7a32bb4e7e5a31cfeb4ca324621c417527.tar.gz gitea-48a3bb7a32bb4e7e5a31cfeb4ca324621c417527.zip |
User Settings: Ignore empty language codes & validate (#13755)
Diffstat (limited to 'integrations/xss_test.go')
-rw-r--r-- | integrations/xss_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/xss_test.go b/integrations/xss_test.go index 425165dccc..2d83e1e106 100644 --- a/integrations/xss_test.go +++ b/integrations/xss_test.go @@ -24,7 +24,7 @@ func TestXSSUserFullName(t *testing.T) { "name": user.Name, "full_name": fullName, "email": user.Email, - "language": "en-us", + "language": "en-US", }) session.MakeRequest(t, req, http.StatusFound) |