File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ func TestSettingShowUserEmailExplore(t *testing.T) {
20
20
setting .UI .ShowUserEmail = true
21
21
22
22
session := loginUser (t , "user2" )
23
- req := NewRequest (t , "GET" , "/explore/users" )
23
+ req := NewRequest (t , "GET" , "/explore/users?sort=alphabetically " )
24
24
resp := session .MakeRequest (t , req , http .StatusOK )
25
25
htmlDoc := NewHTMLParser (t , resp .Body )
26
26
assert .Contains (t ,
@@ -30,7 +30,7 @@ func TestSettingShowUserEmailExplore(t *testing.T) {
30
30
31
31
setting .UI .ShowUserEmail = false
32
32
33
- req = NewRequest (t , "GET" , "/explore/users" )
33
+ req = NewRequest (t , "GET" , "/explore/users?sort=alphabetically " )
34
34
resp = session .MakeRequest (t , req , http .StatusOK )
35
35
htmlDoc = NewHTMLParser (t , resp .Body )
36
36
assert .NotContains (t ,
You can’t perform that action at this time.
0 commit comments