Code/Tools fixes

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-16 15:55:41 -07:00
parent 14990012f8
commit b255334535
11 changed files with 18 additions and 20 deletions
@@ -95,7 +95,7 @@ namespace TestImpact
const auto getResult = [](const AZ::rapidxml::xml_node<>* node)
{
for (auto child_node = node->first_node("failure"); child_node; child_node = child_node->next_sibling())
if (auto child_node = node->first_node("failure"))
{
return TestRunResult::Failed;
}