Cosmetics: Fix coding style issues

This commit is contained in:
Felipe Zimmerle
2015-10-27 10:21:14 -03:00
parent ffb973700a
commit 93031d93d0
17 changed files with 46 additions and 39 deletions

View File

@@ -72,8 +72,10 @@ std::string UnitTest::print() {
i << this->obtained << "\"" << std::endl;
}
if (this->output != this->obtainedOutput) {
i << "Expecting: \"" << ModSecurity::toHexIfNeeded(this->output) << "\" - returned: \"";
i << ModSecurity::toHexIfNeeded(this->obtainedOutput) << "\"" << std::endl;
i << "Expecting: \"" << ModSecurity::toHexIfNeeded(this->output);
i << "\" - returned: \"";
i << ModSecurity::toHexIfNeeded(this->obtainedOutput) << "\"";
i << std::endl;
}
return i.str();