Adds support for trim, left and right trim

This commit is contained in:
Felipe Zimmerle
2015-10-21 14:07:20 -03:00
parent 59af8ab842
commit 17faef565e
6 changed files with 13 additions and 13 deletions

View File

@@ -64,8 +64,6 @@ void perform_unit_test(UnitTest *t, ModSecurityTestResults<UnitTest>* res) {
std::string ret = tfn->evaluate(t->input, NULL);
t->obtained = 1;
if (ret != t->output) {
std::cout << "ret: !" << ret << "!" << std::endl;
std::cout << "obt: !" << t->output << "!" << std::endl;
t->obtainedOutput = ret;
res->push_back(t);
}