Skip to content

Commit

Permalink
[ADLA - ADLS] - Non-functional, minor fixes (comments and changelog) (A…
Browse files Browse the repository at this point in the history
…zure#3990)

* Test comment fix

* ADLS changelog fix

* Comment fixes
  • Loading branch information
ro-joowan authored and shahabhijeet committed Jan 10, 2018
1 parent 24b0949 commit b2330fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void CreateGetUpdateDeleteTest()
commonData = new CommonTestFixture(context, true);
var clientToUse = this.GetDataLakeAnalyticsAccountManagementClient(context);

// Ensure the account doesn't exist and that the account name is not available
// Ensure that the account doesn't exist and that the account name is available
Assert.False(clientToUse.Account.Exists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName));

var checkNameParam = new CheckNameAvailabilityParameters
Expand Down Expand Up @@ -58,7 +58,7 @@ public void CreateGetUpdateDeleteTest()
NewTier = TierType.Commitment100AUHours
});

// Verify the account exists and that the account name is no longer available
// Verify that the account exists and that the account name is no longer available
Assert.True(clientToUse.Account.Exists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName));

responseNameCheck = clientToUse.Account.CheckNameAvailability("EastUS2", checkNameParam);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void CreateGetUpdateDeleteTest()
commonData = new CommonTestFixture(context);
var clientToUse = this.GetDataLakeStoreAccountManagementClient(context);

// Ensure that the account name is not available
// Ensure that the account name is available
var checkNameParam = new CheckNameAvailabilityParameters
{
Name = commonData.DataLakeStoreAccountName
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/DataLake.Store/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

**Breaking changes**

- Changed the `ODataQuery` parameter type from `DataLakeAnalyticsAccount` to `DataLakeAnalyticsAccountBasic` for these APIs:
- Changed the `ODataQuery` parameter type from `DataLakeStoreAccount` to `DataLakeStoreAccountBasic` for these APIs:
- Account_List
- Account_ListByResourceGroup

Expand Down

0 comments on commit b2330fe

Please sign in to comment.