Skip to content

Commit a78bf24

Browse files
committed
Commenting out unecessary calls
1 parent 85be373 commit a78bf24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/SdkUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void AuthorizationCodeLoginTest() {
127127
java.util.List<String> scopes = new ArrayList<String>();
128128
scopes.add(OAuth.Scope_SIGNATURE);
129129
// get DocuSign OAuth authorization url
130-
URI oauthLoginUrl = apiClient.getAuthorizationUri(IntegratorKey, scopes, RedirectURI, OAuth.CODE, randomState);
130+
//URI oauthLoginUrl = apiClient.getAuthorizationUri(IntegratorKey, scopes, RedirectURI, OAuth.CODE, randomState);
131131
// open DocuSign OAuth login in the browser
132132
//Desktop.getDesktop().browse(oauthLoginUrl);
133133
// IMPORTANT: after the login, DocuSign will send back a fresh
@@ -175,7 +175,7 @@ public void ImplicitLoginTest() {
175175
java.util.List<String> scopes = new ArrayList<String>();
176176
scopes.add(OAuth.Scope_SIGNATURE);
177177
// get DocuSign OAuth authorization url
178-
URI oAuthLoginUri = apiClient.getAuthorizationUri(IntegratorKeyImplicit, scopes, RedirectURI, OAuth.TOKEN, randomState);
178+
//URI oAuthLoginUri = apiClient.getAuthorizationUri(IntegratorKeyImplicit, scopes, RedirectURI, OAuth.TOKEN, randomState);
179179
// open DocuSign OAuth login in the browser
180180
//Desktop.getDesktop().browse(oAuthLoginUri);
181181
// IMPORTANT: after the login, DocuSign will send back a new

0 commit comments

Comments
 (0)