[unit test] Complete all providers unit tests #12
Some checks failed
Blockstorage/repertory/pipeline/head There was a failure building this commit
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-17 12:25:20 -05:00
parent 3f163315b6
commit c5ec37e0d8

View File

@@ -1373,10 +1373,7 @@ static void get_total_drive_space(i_provider &provider) {
__FUNCTION__); __FUNCTION__);
std::uint64_t total{provider.get_total_drive_space()}; std::uint64_t total{provider.get_total_drive_space()};
std::uint64_t used{provider.get_used_drive_space()}; std::uint64_t used{provider.get_used_drive_space()};
EXPECT_EQ(api_error::success, );
if (total != 0U) { if (total != 0U) {
EXPECT_GE(total, used); EXPECT_GE(total, used);
} }