Skip to content

Commit

Permalink
fix compilation (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
SvartMetal committed Jun 25, 2024
1 parent a52da63 commit e2d0b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/blockstore/libs/storage/service/service_ut_destroy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Y_UNIT_TEST_SUITE(TServiceDestroyTest)
auto response = service.DescribeVolume("without_prefix");
UNIT_ASSERT_VALUES_EQUAL(S_OK, response->GetStatus());

CreateSimpleSsdDisk(service, "with_prefix", "");
CreateSimpleSsdDisk(service, "with_prefix");
response = service.DescribeVolume("with_prefix");
UNIT_ASSERT_VALUES_EQUAL(S_OK, response->GetStatus());

Expand Down Expand Up @@ -143,7 +143,7 @@ Y_UNIT_TEST_SUITE(TServiceDestroyTest)
auto response = service.DescribeVolume("without_prefix");
UNIT_ASSERT_VALUES_EQUAL(S_OK, response->GetStatus());

CreateSimpleSsdDisk(service, "with_prefix", "");
CreateSimpleSsdDisk(service, "with_prefix");
response = service.DescribeVolume("with_prefix");
UNIT_ASSERT_VALUES_EQUAL(S_OK, response->GetStatus());

Expand Down

0 comments on commit e2d0b8f

Please sign in to comment.