diff options
Diffstat (limited to 'integrations/oauth_test.go')
-rw-r--r-- | integrations/oauth_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/oauth_test.go b/integrations/oauth_test.go index a9e48b061f..e74ff28cad 100644 --- a/integrations/oauth_test.go +++ b/integrations/oauth_test.go @@ -235,7 +235,7 @@ func TestRefreshTokenInvalidation(t *testing.T) { "redirect_uri": "a", "refresh_token": parsed.RefreshToken, }) - // tip: Why this changed, because macaron will set req.Body back when consume the req but chi will not. + bs, err := ioutil.ReadAll(refreshReq.Body) assert.NoError(t, err) |