Skip to content

Commit ccd7e6b

Browse files
authoredMar 27, 2025··
Fix unstable test cases (#6485)
1 parent c914c09 commit ccd7e6b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed
 

‎sdk/storage/azure-storage-files-datalake/test/ut/datalake_directory_client_test.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -894,10 +894,13 @@ namespace Azure { namespace Storage { namespace Test {
894894
"Wed, 29 Sep 2100 09:53:03 GMT", Azure::DateTime::DateFormat::Rfc1123);
895895
EXPECT_NO_THROW(fileClient.ScheduleDeletion(
896896
Files::DataLake::ScheduleFileExpiryOriginType::Absolute, options));
897-
898-
auto pagedResult = m_directoryClient->ListPaths(true);
899-
EXPECT_EQ(1L, pagedResult.Paths.size());
900-
ASSERT_TRUE(pagedResult.Paths[0].ExpiresOn.HasValue());
901-
EXPECT_EQ(options.ExpiresOn.Value(), pagedResult.Paths[0].ExpiresOn.Value());
897+
std::vector<Files::DataLake::Models::PathItem> paths;
898+
for (auto page = m_directoryClient->ListPaths(true); page.HasPage(); page.MoveToNextPage())
899+
{
900+
paths.insert(paths.end(), page.Paths.begin(), page.Paths.end());
901+
}
902+
EXPECT_EQ(1L, paths.size());
903+
ASSERT_TRUE(paths[0].ExpiresOn.HasValue());
904+
EXPECT_EQ(options.ExpiresOn.Value(), paths[0].ExpiresOn.Value());
902905
}
903906
}}} // namespace Azure::Storage::Test

0 commit comments

Comments
 (0)
Please sign in to comment.