Skip to content

Commit

Permalink
Remove space (#38)
Browse files Browse the repository at this point in the history
* remove space

* remove space
  • Loading branch information
Luyunmt authored Nov 18, 2020
1 parent b90a855 commit 0df38e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/azureIdentityCredentialAdapter.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as assert from "assert";
import * as dotenv from "dotenv";
import { ResourceManagementClient } from "@azure/arm-resources";
import { AzureIdentityCredentialAdapter } from "./azureIdentityCredentialAdapter ";
import { AzureIdentityCredentialAdapter } from "./azureIdentityCredentialAdapter";

dotenv.config({ path: "../.env" });

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const DEFAULT_AUTHORIZATION_SCHEME = "Bearer";
* This class provides a simple extension to use {@link TokenCredential} from com.azure:azure-identity library to
* use with legacy Azure SDKs that accept {@link ServiceClientCredentials} family of credentials for authentication.
*/
export class AzureIdentityCredentialAdapter implements ServiceClientCredentials {
export class AzureIdentityCredentialAdapter implements ServiceClientCredentials {
private azureTokenCredential: TokenCredential;
private scopes: string | string[];
constructor(
Expand Down

0 comments on commit 0df38e7

Please sign in to comment.