Skip to content

Commit

Permalink
use adls-token not adls-sas-token
Browse files Browse the repository at this point in the history
  • Loading branch information
FANNG1 committed Dec 26, 2024
1 parent 33e8145 commit 57fde1e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ void testADLSTokenCredential() {
long expireTime = 100;
Credential credential =
CredentialFactory.create(
ADLSTokenCredential.ADLS_TOKEN_CREDENTIAL_TYPE,
adlsTokenCredentialInfo,
expireTime);
ADLSTokenCredential.ADLS_TOKEN_CREDENTIAL_TYPE, adlsTokenCredentialInfo, expireTime);
Assertions.assertEquals(
ADLSTokenCredential.ADLS_TOKEN_CREDENTIAL_TYPE, credential.credentialType());
Assertions.assertInstanceOf(ADLSTokenCredential.class, credential);
Expand Down

0 comments on commit 57fde1e

Please sign in to comment.