- Fix issue 42
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-10-25 08:55:56 +00:00
parent cc0b67fb17
commit 24ea5b7b6a
4 changed files with 51 additions and 8 deletions

View File

@@ -454,7 +454,10 @@ int TestSuite::phaseStrToInt(string s){
if (s.compare("secondmain") == 0)return Constants::MTG_PHASE_SECONDMAIN;
if (s.compare("endofturn") == 0)return Constants::MTG_PHASE_ENDOFTURN;
if (s.compare("cleanup") == 0)return Constants::MTG_PHASE_CLEANUP;
return -1;
OutputDebugString("TESTSUITEAI: Unknown Phase name:");
OutputDebugString(s.c_str());
OutputDebugString("\n");
return Constants::MTG_PHASE_FIRSTMAIN;
}
void TestSuiteActions::cleanup(){