diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-01-27 18:19:24 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-01-27 18:19:24 +0300 |
commit | 83d128c4652ec6fe56b77b93d0b910216f98bf4b (patch) | |
tree | 9172fb6ba6c922bbed874fb51865311c41f57fd9 | |
parent | 4c52fa16c52ee78634187ebe07cfa2dd7c4867c9 (diff) | |
download | ydb-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.cpp | 2 |
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(); |