aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-01-27 18:19:24 +0300
committeralexv-smirnov <alex@ydb.tech>2023-01-27 18:19:24 +0300
commit83d128c4652ec6fe56b77b93d0b910216f98bf4b (patch)
tree9172fb6ba6c922bbed874fb51865311c41f57fd9
parent4c52fa16c52ee78634187ebe07cfa2dd7c4867c9 (diff)
downloadydb-83d128c4652ec6fe56b77b93d0b910216f98bf4b.tar.gz
Remove fixed config file name used in different tests running in parallel
-rw-r--r--ydb/core/mind/address_classification/net_classifier_ut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/mind/address_classification/net_classifier_ut.cpp b/ydb/core/mind/address_classification/net_classifier_ut.cpp
index 67262bc42f0..80654535755 100644
--- a/ydb/core/mind/address_classification/net_classifier_ut.cpp
+++ b/ydb/core/mind/address_classification/net_classifier_ut.cpp
@@ -19,7 +19,7 @@ using namespace NNetClassifier;
using namespace Tests;
static THolder<TTempFileHandle> CreateNetDataFile(const TString& content) {
- auto netDataFile = MakeHolder<TTempFileHandle>("data.tsv");
+ auto netDataFile = MakeHolder<TTempFileHandle>();
netDataFile->Write(content.Data(), content.Size());
netDataFile->FlushData();