Module: wine Branch: master Commit: b211f9123bc0e062ea52f87f7df19bd513ca5e35 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b211f9123bc0e062ea52f87f7d...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 11 11:00:10 2015 +0100
mshtml/tests: '%' doesn't needs escaping in a C string (sparse).
---
dlls/mshtml/tests/dom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index f083bae..fca96a0 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -7764,8 +7764,8 @@ static void test_elems(IHTMLDocument2 *doc) test_anchor_put_search((IUnknown*)elem, "?????word???press"); test_anchor_search((IUnknown*)elem, "?????word???press", FALSE);
- test_anchor_put_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD"); /* encoded cjk characters */ - test_anchor_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD", FALSE); + test_anchor_put_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD"); /* encoded cjk characters */ + test_anchor_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD", FALSE);
test_anchor_put_search((IUnknown*)elem, "?how?old=are"); test_anchor_search((IUnknown*)elem, "?how?old=are", FALSE);