From 5e4822db5bcc91bb83d50b7e119821391c6d0e51 Mon Sep 17 00:00:00 2001 From: Vladislav Kalugin Date: Tue, 2 Apr 2024 13:02:24 +0300 Subject: [PATCH] Fix --- server/src/Server.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/src/Server.cpp b/server/src/Server.cpp index d712d75f..960e43d1 100644 --- a/server/src/Server.cpp +++ b/server/src/Server.cpp @@ -672,8 +672,7 @@ Server::TestsGenServiceImpl::ConfigureProject(ServerContext *context, utbot::ProjectContext utbotProjectContext{request->projectcontext()}; - fs::path buildDirPath = - fs::path(utbotProjectContext.projectPath) / utbotProjectContext.getTestDirAbsPath(); + fs::path buildDirPath = utbotProjectContext.getBuildDirAbsPath(); switch (request->configmode()) { case ConfigMode::CHECK: return UserProjectConfiguration::CheckProjectConfiguration(buildDirPath, writer);