From: Jacek Caban Subject: mshtml: Make listStyle tests less strict about value order. Message-Id: <541C1153.6030902@codeweavers.com> Date: Fri, 19 Sep 2014 13:19:47 +0200 --- dlls/mshtml/tests/style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/style.c b/dlls/mshtml/tests/style.c index d8c86b1..ed9338d 100644 --- a/dlls/mshtml/tests/style.c +++ b/dlls/mshtml/tests/style.c @@ -2351,7 +2351,7 @@ static void test_body_style(IHTMLStyle *style) if (hres != E_INVALIDARG) { hres = IHTMLStyle_get_listStyle(style, &str); ok(hres == S_OK, "get_listStyle failed: %08x\n", hres); - ok(strstr_wa(str, "decimal-leading-zero") == str && + ok(strstr_wa(str, "decimal-leading-zero") && strstr_wa(str, "none") != NULL && strstr_wa(str, "inside") != NULL, "listStyle = %s\n", wine_dbgstr_w(str));