aboutsummaryrefslogtreecommitdiffstats
path: root/tests/integration/release_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/release_test.go')
-rw-r--r--tests/integration/release_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/release_test.go b/tests/integration/release_test.go
index b5af43e492..ce0c440167 100644
--- a/tests/integration/release_test.go
+++ b/tests/integration/release_test.go
@@ -234,7 +234,7 @@ func TestViewTagsList(t *testing.T) {
tagNames := make([]string, 0, 5)
tags.Each(func(i int, s *goquery.Selection) {
- tagNames = append(tagNames, s.Find(".tag a.tw-flex.tw-content-center").Text())
+ tagNames = append(tagNames, s.Find(".tag a.tw-flex.tw-items-center").Text())
})
assert.EqualValues(t, []string{"v1.0", "delete-tag", "v1.1"}, tagNames)