Commit 578870bc authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

msxml3/tests: VT_EMPTY is not a string.

parent 98fba5e5
...@@ -80,7 +80,7 @@ static void test_xmlelem(void) ...@@ -80,7 +80,7 @@ static void test_xmlelem(void)
hr = IXMLElement_getAttribute(element, str, &vValue); hr = IXMLElement_getAttribute(element, str, &vValue);
ok(hr == S_FALSE, "Expected S_FALSE, got %d\n", hr); ok(hr == S_FALSE, "Expected S_FALSE, got %d\n", hr);
ok(V_VT(&vValue) == VT_EMPTY, "Expected VT_EMPTY, got %d\n", V_VT(&vValue)); ok(V_VT(&vValue) == VT_EMPTY, "Expected VT_EMPTY, got %d\n", V_VT(&vValue));
ok(lstrlenW(V_BSTR(&vValue)) == 0, "Expected empty value\n"); ok(V_BSTR(&vValue) == NULL, "Expected null value\n");
VariantClear(&vValue); VariantClear(&vValue);
SysFreeString(str); SysFreeString(str);
...@@ -125,7 +125,7 @@ static void test_xmlelem(void) ...@@ -125,7 +125,7 @@ static void test_xmlelem(void)
hr = IXMLElement_getAttribute(element, str, &vValue); hr = IXMLElement_getAttribute(element, str, &vValue);
ok(hr == 1, "Expected 1, got %d\n", hr); ok(hr == 1, "Expected 1, got %d\n", hr);
ok(V_VT(&vValue) == VT_EMPTY, "Expected VT_EMPTY, got %d\n", V_VT(&vValue)); ok(V_VT(&vValue) == VT_EMPTY, "Expected VT_EMPTY, got %d\n", V_VT(&vValue));
ok(!lstrlenW(V_BSTR(&vValue)), "Expected empty value\n"); ok(V_BSTR(&vValue) == NULL, "Expected null value\n");
SysFreeString(str); SysFreeString(str);
VariantClear(&vValue); VariantClear(&vValue);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment