Skip to content

Commit

Permalink
issue-2947: rename cache to backup
Browse files Browse the repository at this point in the history
  • Loading branch information
vladstepanyuk committed Feb 11, 2025
1 parent eb7cc96 commit 1501576
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cloud/storage/core/libs/hive_proxy/hive_proxy_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1107,10 +1107,10 @@ Y_UNIT_TEST_SUITE(THiveProxyTest)

Y_UNIT_TEST(DontBackupWithEmptyBootInfoFilePath)
{
TString cacheFilePath = "";
TString backupFilePath = "";

TTestBasicRuntime runtime;
TTestEnv env(runtime, cacheFilePath);
TTestEnv env(runtime, backupFilePath);

auto sender = runtime.AllocateEdgeActor();

Expand All @@ -1119,13 +1119,13 @@ Y_UNIT_TEST_SUITE(THiveProxyTest)

Y_UNIT_TEST(BootExternalInFallbackMode)
{
TString cacheFilePath =
"BootExternalInFallbackMode.tablet_boot_info_cache.txt";;
TString backupFilePath =
"BootExternalInFallbackMode.tablet_boot_info_backup.txt";
bool fallbackMode = false;

{
TTestBasicRuntime runtime;
TTestEnv env(runtime, cacheFilePath, fallbackMode);
TTestEnv env(runtime, backupFilePath, fallbackMode);

TTabletStorageInfoPtr expected = CreateTestTabletInfo(
FakeTablet2,
Expand All @@ -1151,7 +1151,7 @@ Y_UNIT_TEST_SUITE(THiveProxyTest)
fallbackMode = true;
{
TTestBasicRuntime runtime;
TTestEnv env(runtime, cacheFilePath, fallbackMode);
TTestEnv env(runtime, backupFilePath, fallbackMode);

auto sender = runtime.AllocateEdgeActor();

Expand Down

0 comments on commit 1501576

Please sign in to comment.