Changes library namespace from ModSecurity to modsecurity

This commit is contained in:
Felipe Zimmerle
2015-11-30 14:12:54 -03:00
parent a69e49a1b0
commit b5a43871e6
283 changed files with 377 additions and 376 deletions

View File

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