Fix test issue-1974

This commit is contained in:
martinhsv 2019-10-23 07:47:35 -07:00 committed by felipe
parent d4dc3dbf2a
commit 01c7a2689b
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -114,7 +114,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(urlDecodeUni) { return new UrlDecodeUni(a); }
IF_MATCH(urlDecode) { return new UrlDecode(a); }
IF_MATCH(urlEncode) { return new UrlEncode(a); }
IF_MATCH(utf8ToUnicode) { return new Utf8ToUnicode(a); }
IF_MATCH(utf8toUnicode) { return new Utf8ToUnicode(a); }
return new Transformation(a);
}