diff options
author | 6543 <6543@obermui.de> | 2020-09-17 23:33:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 16:33:23 -0500 |
commit | 06480af4723d34ac744c5f4f52fd974c3d016e59 (patch) | |
tree | 9bfe6f0a4858b9d2c8ea482007fe969c5fe4851f /integrations/api_pull_review_test.go | |
parent | afea4faa33f9cb4a5bb42fb9798fabb3fa4ff7d3 (diff) | |
download | gitea-06480af4723d34ac744c5f4f52fd974c3d016e59.tar.gz gitea-06480af4723d34ac744c5f4f52fd974c3d016e59.zip |
Convert User expose ID each time (#12855)
* git blame tells me a lot of gitea things happen here around 2018, add header
* move user code int its own file
* expose user id
* adopt things from APIFormat
* fix test
* CI.restart()
Diffstat (limited to 'integrations/api_pull_review_test.go')
-rw-r--r-- | integrations/api_pull_review_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/api_pull_review_test.go b/integrations/api_pull_review_test.go index 611b34712c..28eed87255 100644 --- a/integrations/api_pull_review_test.go +++ b/integrations/api_pull_review_test.go @@ -43,7 +43,7 @@ func TestAPIPullReview(t *testing.T) { assert.EqualValues(t, 10, reviews[5].ID) assert.EqualValues(t, "REQUEST_CHANGES", reviews[5].State) assert.EqualValues(t, 1, reviews[5].CodeCommentsCount) - assert.EqualValues(t, 0, reviews[5].Reviewer.ID) // ghost user + assert.EqualValues(t, -1, reviews[5].Reviewer.ID) // ghost user assert.EqualValues(t, false, reviews[5].Stale) assert.EqualValues(t, true, reviews[5].Official) |