[MapRotation]: Clean unit test (#978)

This commit is contained in:
Edo 2023-04-26 21:41:57 +01:00 committed by GitHub
parent 0a5a585f34
commit b34407449c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -424,7 +424,7 @@ namespace Components
} }
catch (const std::exception& ex) catch (const std::exception& ex)
{ {
Logger::PrintError(Game::CON_CHANNEL_ERROR, "{}: parsing of 'normal' failed\n", ex.what()); Logger::PrintError(Game::CON_CHANNEL_ERROR, "{}. parsing of 'normal' failed\n", ex.what());
return false; return false;
} }
@ -439,7 +439,7 @@ namespace Components
} }
catch (const std::exception& ex) catch (const std::exception& ex)
{ {
Logger::Debug("{}: parsing of 'normal' failed as expected", ex.what()); Logger::Debug("{}. parsing of 'normal' failed as expected", ex.what());
success = true; success = true;
} }