diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-03-21 23:07:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 15:07:35 +0000 |
commit | cdb4d1a8db096d60dba04728924dab85def45b19 (patch) | |
tree | 58377e0202cd4186faad7bc7add82e1b11662b90 /models/issues/pull_test.go | |
parent | 82979588f4d8699097451ebb70c56a4bdd090c52 (diff) | |
download | gitea-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.go | 2 |
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) |