Commit 9e3d103d authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

msxml3/tests: Don't test the variant payload for the VT_EMPTY type.

parent 8335335c
...@@ -1457,14 +1457,12 @@ static void test_XMLHTTP(void) ...@@ -1457,14 +1457,12 @@ static void test_XMLHTTP(void)
hr = IXMLHttpRequest_get_responseBody(xhr, &varbody); hr = IXMLHttpRequest_get_responseBody(xhr, &varbody);
EXPECT_HR(hr, E_PENDING); EXPECT_HR(hr, E_PENDING);
ok(V_VT(&varbody) == VT_EMPTY, "got type %d\n", V_VT(&varbody)); ok(V_VT(&varbody) == VT_EMPTY, "got type %d\n", V_VT(&varbody));
ok(V_I2(&varbody) == 1, "got %d\n", V_I2(&varbody));
V_VT(&varbody) = VT_I2; V_VT(&varbody) = VT_I2;
V_I2(&varbody) = 1; V_I2(&varbody) = 1;
hr = IXMLHttpRequest_get_responseStream(xhr, &varbody); hr = IXMLHttpRequest_get_responseStream(xhr, &varbody);
EXPECT_HR(hr, E_PENDING); EXPECT_HR(hr, E_PENDING);
ok(V_VT(&varbody) == VT_EMPTY, "got type %d\n", V_VT(&varbody)); ok(V_VT(&varbody) == VT_EMPTY, "got type %d\n", V_VT(&varbody));
ok(V_I2(&varbody) == 1, "got %d\n", V_I2(&varbody));
/* send before open */ /* send before open */
hr = IXMLHttpRequest_send(xhr, dummy); hr = IXMLHttpRequest_send(xhr, dummy);
......
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