Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
revenge of the clang
  • Loading branch information
gearama committed Jan 13, 2024
commit dd55014b41682db8a9a8010db435d8db2979d221
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ namespace Azure { namespace Data { namespace Tables {
* @param context for canceling long running operations.
* @return Get access policy result.
*/
Response<Models::TableAccessPolicy> GetAccessPolicy(
Core::Context const& context = {});
Response<Models::TableAccessPolicy> GetAccessPolicy(Core::Context const& context = {});

/**
* @brief Set table access policy.
Expand Down Expand Up @@ -426,8 +425,7 @@ namespace Azure { namespace Data { namespace Tables {
* @param context for canceling long running operations.
* @return Get service statistics result.
*/
Response<Models::ServiceStatistics> GetStatistics(
Core::Context const& context = {});
Response<Models::ServiceStatistics> GetStatistics(Core::Context const& context = {});

/**
* @brief Pre flight check
Expand Down
6 changes: 2 additions & 4 deletions sdk/tables/azure-data-tables/test/ut/table_client_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@ namespace Azure { namespace Data { namespace Test {

std::string GetAccountName()
{
return Azure::Data::Tables::Credentials::_detail::ParseConnectionString(
GetConnectionString())
return Azure::Data::Tables::Credentials::_detail::ParseConnectionString(GetConnectionString())
.AccountName;
}

std::string GetAccountKey()
{
return Azure::Data::Tables::Credentials::_detail::ParseConnectionString(
GetConnectionString())
return Azure::Data::Tables::Credentials::_detail::ParseConnectionString(GetConnectionString())
.AccountKey;
}

Expand Down