Skip to content

Commit 32adfde

Browse files
committed
update unit test to use GraphServiceClient.builder()
1 parent fe9fc74 commit 32adfde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/microsoft/graph/functional/TestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void authenticateRequest(final IHttpRequest request) {
5252
};
5353
IClientConfig mClientConfig = DefaultClientConfig.createWithAuthenticationProvider(mAuthenticationProvider);
5454

55-
graphClient = new GraphServiceClient.Builder().fromConfig(mClientConfig).buildClient();
55+
graphClient = GraphServiceClient.builder().fromConfig(mClientConfig).buildClient();
5656
}
5757
catch (Exception e)
5858
{

0 commit comments

Comments
 (0)