Skip to content

Commit 94dac7a

Browse files
committed
Fix test issue-1974
1 parent d4dc3db commit 94dac7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/transformations/transformation.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Transformation* Transformation::instantiate(std::string a) {
114114
IF_MATCH(urlDecodeUni) { return new UrlDecodeUni(a); }
115115
IF_MATCH(urlDecode) { return new UrlDecode(a); }
116116
IF_MATCH(urlEncode) { return new UrlEncode(a); }
117-
IF_MATCH(utf8ToUnicode) { return new Utf8ToUnicode(a); }
117+
IF_MATCH(utf8toUnicode) { return new Utf8ToUnicode(a); }
118118

119119
return new Transformation(a);
120120
}

0 commit comments

Comments
 (0)