aboutsummaryrefslogtreecommitdiffstats
path: root/models/issues/pull_test.go
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2024-03-21 23:07:35 +0800
committerGitHub <noreply@github.com>2024-03-21 15:07:35 +0000
commitcdb4d1a8db096d60dba04728924dab85def45b19 (patch)
tree58377e0202cd4186faad7bc7add82e1b11662b90 /models/issues/pull_test.go
parent82979588f4d8699097451ebb70c56a4bdd090c52 (diff)
downloadgitea-cdb4d1a8db096d60dba04728924dab85def45b19.tar.gz
gitea-cdb4d1a8db096d60dba04728924dab85def45b19.zip
Refactor StringsToInt64s (#29967)
And close #27176
Diffstat (limited to 'models/issues/pull_test.go')
-rw-r--r--models/issues/pull_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/models/issues/pull_test.go b/models/issues/pull_test.go
index 3a30b2f3de..675c90527d 100644
--- a/models/issues/pull_test.go
+++ b/models/issues/pull_test.go
@@ -66,7 +66,6 @@ func TestPullRequestsNewest(t *testing.T) {
},
State: "open",
SortType: "newest",
- Labels: []string{},
})
assert.NoError(t, err)
assert.EqualValues(t, 3, count)
@@ -113,7 +112,6 @@ func TestPullRequestsOldest(t *testing.T) {
},
State: "open",
SortType: "oldest",
- Labels: []string{},
})
assert.NoError(t, err)
assert.EqualValues(t, 3, count)