Skip to content

Commit

Permalink
fix: rebase windows incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ncvicchi committed Dec 10, 2024
1 parent 6652c2d commit 37f245a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/agent/tests/agent_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ class AgentTests : public ::testing::Test

void CleanUpTempFiles()
{
std::remove(AGENT_CONFIG_PATH);
std::remove("/tmp/agent_info.db");
std::remove(AGENT_CONFIG_PATH.c_str());
std::remove(AGENT_DB_PATH.c_str());
}
};

Expand Down

0 comments on commit 37f245a

Please sign in to comment.