Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 9b09483

Browse files
will-tongvinjiang
authored andcommitted
Fix failing storage account test
1 parent 18ddc57 commit 9b09483

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Microsoft.WindowsAzure.Storage/tests/cloud_storage_account_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ SUITE(Core)
487487

488488
CHECK_UTF8_EQUAL(token, creds.sas_token());
489489
CHECK(creds.account_name().empty());
490-
CHECK(creds.account_key().empty());
490+
CHECK(!creds.is_account_key());
491491
CHECK(!creds.is_anonymous());
492492
CHECK(creds.is_sas());
493493
CHECK(!creds.is_shared_key());
@@ -502,7 +502,7 @@ SUITE(Core)
502502

503503
CHECK_UTF8_EQUAL(token, creds.sas_token());
504504
CHECK(creds.account_name().empty());
505-
CHECK(creds.account_key().empty());
505+
CHECK(!creds.is_account_key());
506506
CHECK(!creds.is_anonymous());
507507
CHECK(creds.is_sas());
508508
CHECK(!creds.is_shared_key());

0 commit comments

Comments
 (0)