aboutsummaryrefslogtreecommitdiffstats
path: root/tests/integration/repo_commits_search_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/repo_commits_search_test.go')
-rw-r--r--tests/integration/repo_commits_search_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/repo_commits_search_test.go b/tests/integration/repo_commits_search_test.go
index 74ac25c0f5..9b05e36399 100644
--- a/tests/integration/repo_commits_search_test.go
+++ b/tests/integration/repo_commits_search_test.go
@@ -23,7 +23,7 @@ func testRepoCommitsSearch(t *testing.T, query, commit string) {
doc := NewHTMLParser(t, resp.Body)
sel := doc.doc.Find("#commits-table tbody tr td.sha a")
- assert.EqualValues(t, commit, strings.TrimSpace(sel.Text()))
+ assert.Equal(t, commit, strings.TrimSpace(sel.Text()))
}
func TestRepoCommitsSearch(t *testing.T) {