Skip to content

Commit

Permalink
Merge pull request googleapis#26 from garrettjonesgoogle/master
Browse files Browse the repository at this point in the history
Fixing tests after constructor change in UserCredentials
  • Loading branch information
garrettjonesgoogle committed Jul 24, 2015
2 parents c334294 + 76aeee6 commit b126f64
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@ public void initialize_populatesOAuth2Credentials_handle401() throws IOException
tokenServerTransport.addRefreshToken(REFRESH_TOKEN, accessToken);

OAuth2Credentials credentials = new UserCredentials(
CLIENT_ID, CLIENT_SECRET, REFRESH_TOKEN, tokenServerTransport);
CLIENT_ID, CLIENT_SECRET, REFRESH_TOKEN, null, tokenServerTransport, null);
credentials.refresh();
HttpCredentialsAdapter adapter = new HttpCredentialsAdapter(credentials);

Expand Down

0 comments on commit b126f64

Please sign in to comment.