diff options
author | Morlinest <Morlinest@users.noreply.github.com> | 2017-09-22 12:51:16 +0200 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-09-22 13:51:16 +0300 |
commit | ca68a75b5b8d457f56905ebb7e56d4b7c4566c2e (patch) | |
tree | 37ae9fd4e513bc6b7d18056e03a19b9319b3f0ad /models/org_test.go | |
parent | b4b0280e339767ae13ea994cee877a666255e65d (diff) | |
download | gitea-ca68a75b5b8d457f56905ebb7e56d4b7c4566c2e.tar.gz gitea-ca68a75b5b8d457f56905ebb7e56d4b7c4566c2e.zip |
Expand fixtures (#2571)
* Add more repo search tests
* Add and fix /api/repo/search integration tests
* Add owner to access table for organization repositories
* Remove tests
Diffstat (limited to 'models/org_test.go')
-rw-r--r-- | models/org_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/org_test.go b/models/org_test.go index 07da2d56af..c7bdb8b5d3 100644 --- a/models/org_test.go +++ b/models/org_test.go @@ -252,7 +252,7 @@ func TestOrganizations(t *testing.T) { []int64{3, 6}) testSuccess(&SearchUserOptions{OrderBy: "id ASC", Page: 2, PageSize: 2}, - []int64{7}) + []int64{7, 17}) testSuccess(&SearchUserOptions{Page: 3, PageSize: 2}, []int64{}) |