diff --git a/projects/mtg/src/TestSuiteAI.cpp b/projects/mtg/src/TestSuiteAI.cpp index 70ab7b003..d774fb0fd 100644 --- a/projects/mtg/src/TestSuiteAI.cpp +++ b/projects/mtg/src/TestSuiteAI.cpp @@ -419,8 +419,9 @@ int TestSuite::assertGame() GameObserver * g = GameObserver::GetInstance(); if (g->currentGamePhase != endState.phase) { - sprintf(result, "==phase problem. Expected %i, got %i==
", endState.phase, - g->currentGamePhase); + sprintf(result, "==phase problem. Expected [ %s ](%i), got [ %s ](%i)==
", + Constants::MTGPhaseNames[endState.phase],endState.phase, + Constants::MTGPhaseNames[g->currentGamePhase], g->currentGamePhase); Log(result); error++; }