Change temp dir name

This commit is contained in:
jbajic 2022-08-02 10:19:36 +02:00
parent 05b4e86f49
commit 794046309a
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@ struct InterpreterFaker {
class InterpreterTest : public ::testing::Test {
protected:
memgraph::storage::v3::Storage db_;
std::filesystem::path data_directory{std::filesystem::temp_directory_path() / "MG_tests_unit_interpreter"};
std::filesystem::path data_directory{std::filesystem::temp_directory_path() / "MG_tests_unit_query_v2_interpreter"};
InterpreterFaker default_interpreter{&db_, {}, data_directory};

View File

@ -34,7 +34,8 @@ class QueryExecution : public testing::Test {
std::optional<InterpreterContext> interpreter_context_;
std::optional<Interpreter> interpreter_;
std::filesystem::path data_directory{std::filesystem::temp_directory_path() / "MG_tests_unit_query_plan_edge_cases"};
std::filesystem::path data_directory{std::filesystem::temp_directory_path() /
"MG_tests_unit_query_v2_query_plan_edge_cases"};
void SetUp() {
db_.emplace();