Skip to content

Commit 01d2202

Browse files
committed
fix test
1 parent e883be5 commit 01d2202

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cloud/blockstore/libs/storage/core/volume_model_ut.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,7 @@ Y_UNIT_TEST_SUITE(TVolumeModelTest)
11871187
{
11881188
NProto::TStorageServiceConfig storageServiceConfig;
11891189
storageServiceConfig.SetMinChannelCount(1);
1190+
storageServiceConfig.SetFreshChannelCount(0);
11901191
auto config = std::make_unique<TStorageConfig>(
11911192
std::move(storageServiceConfig),
11921193
std::make_shared<NFeatures::TFeaturesConfig>(

cloud/blockstore/libs/storage/service/service_ut_alter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -864,12 +864,12 @@ Y_UNIT_TEST_SUITE(TServiceAlterTest)
864864
ui32 nodeIdx2;
865865
{
866866
NProto::TStorageServiceConfig config;
867-
config.SetFreshChannelCount(1);
867+
config.SetFreshChannelCount(0);
868868

869869
NProto::TFeaturesConfig featuresConfig;
870870

871-
nodeIdx1 = SetupTestEnv(env);
872-
nodeIdx2 = SetupTestEnv(env, config, featuresConfig);
871+
nodeIdx1 = SetupTestEnv(env, config, {});
872+
nodeIdx2 = SetupTestEnv(env);
873873
}
874874

875875
auto& runtime = env.GetRuntime();

0 commit comments

Comments
 (0)