Skip to content

Commit aab51ec

Browse files
committed
Fix test
Signed-off-by: Yarden Shoham <[email protected]>
1 parent 52f4ad7 commit aab51ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/setting_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestSettingShowUserEmailExplore(t *testing.T) {
2626
htmlDoc := NewHTMLParser(t, resp.Body)
2727
assert.Contains(t,
2828
htmlDoc.doc.Find(".ui.user.list").Text(),
29-
"user4@example.com",
29+
"user10@example.com",
3030
)
3131

3232
setting.UI.ShowUserEmail = false
@@ -36,7 +36,7 @@ func TestSettingShowUserEmailExplore(t *testing.T) {
3636
htmlDoc = NewHTMLParser(t, resp.Body)
3737
assert.NotContains(t,
3838
htmlDoc.doc.Find(".ui.user.list").Text(),
39-
"user4@example.com",
39+
"user10@example.com",
4040
)
4141

4242
setting.UI.ShowUserEmail = showUserEmail

0 commit comments

Comments
 (0)