fix(ci): Fix namespace in Phase5 test files

- Change 'using namespace bot::ai' to 'using namespace Playerbot::bot::ai'

Signed-off-by: luis <[email protected]>
This commit is contained in:
agatho
2026-01-22 21:41:13 -03:00
committed by luis
parent ce80b6ce5f
commit c068170d74
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
#include "AI/Decision/ActionPriorityQueue.h"
#include "AI/Decision/DecisionFusionSystem.h"
using namespace bot::ai;
using namespace Playerbot::bot::ai;
// Test spell IDs (placeholder values)
constexpr uint32 SPELL_FIREBALL = 133;
+1 -1
View File
@@ -18,7 +18,7 @@
#include "tc_catch2.h"
#include "AI/Decision/BehaviorTree.h"
using namespace bot::ai;
using namespace Playerbot::bot::ai;
TEST_CASE("BehaviorTree - NodeStatus Values", "[Phase5][BehaviorTree]")
{
+1 -1
View File
@@ -18,7 +18,7 @@
#include "tc_catch2.h"
#include "AI/Decision/DecisionFusionSystem.h"
using namespace bot::ai;
using namespace Playerbot::bot::ai;
TEST_CASE("DecisionFusion - DecisionVote Weighted Score", "[Phase5][DecisionFusion]")
{