diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/Common/TestEnvironmentFactory.cs b/src/ServiceManagement/Common/Commands.ScenarioTest/Common/TestEnvironmentFactory.cs index 24fbcfeb6aac..ec3cde25204f 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/Common/TestEnvironmentFactory.cs +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/Common/TestEnvironmentFactory.cs @@ -36,12 +36,12 @@ public abstract class TestEnvironmentFactory public const string SubscriptionIdKey = ConnectionStringFields.SubscriptionId; /// - /// The key inside the connection string for the subscription identifier + /// The key inside the connection string for the AAD user ID /// public const string AADUserIdKey = ConnectionStringFields.UserId; /// - /// The key inside the connection string for the subscription identifier + /// The key inside the connection string for the AAD password /// public const string AADPasswordKey = ConnectionStringFields.Password; @@ -51,7 +51,7 @@ public abstract class TestEnvironmentFactory public const string BaseUriKey = ConnectionStringFields.BaseUri; /// - /// The key inside the connection string for the AAD client ID" + /// The key inside the connection string for the AAD client ID /// public const string ClientID = ConnectionStringFields.AADClientId; public const string ClientIdDefault = "1950a258-227b-4e31-a9cf-717495945fc2"; @@ -70,7 +70,7 @@ public abstract class TestEnvironmentFactory public const string StorageAccountKey = "AZURE_STORAGE_ACCOUNT"; /// - /// A raw token to be used for authentication with the give subscription ID + /// A raw token to be used for authentication with the given subscription ID /// public const string RawToken = ConnectionStringFields.RawToken; @@ -84,9 +84,9 @@ public virtual TestEnvironment GetTestEnvironment() protected abstract TestEnvironment GetTestEnvironmentFromContext(); /// - /// Return test credentials and URI using AAD auth for an OrgID account. Use this emthod with causion, it may take a dependency on ADAL + /// Return test credentials and URI using AAD auth for an OrgID account. Use this method with caution - it may take a dependency on ADAL. /// - /// The test credentials, or null if nthe appropriate environment variablke is not set. + /// The test credentials, or null if the appropriate environment variable is not set. protected virtual TestEnvironment GetOrgIdTestEnvironment(string orgIdVariable) { TestEnvironment orgIdEnvironment = null; @@ -181,7 +181,7 @@ private static string GetOrgId(string orgIdVariable) /// A dictionary of keys and values from the connection string public static IDictionary ParseConnectionString(string connectionString) { - // hacky connection string parser. We should replace with more robust connection strign parsing + // hacky connection string parser. We should replace with more robust connection string parsing IDictionary settings = new Dictionary(); string[] pairs = connectionString.Split(new char[] { ';' }); foreach (string pair in pairs)