[PATCH 3/3] msxml3/tests: Don't test the variant payload for the VT_EMPTY type.

Huw Davies huw at codeweavers.com
Tue May 13 03:20:51 CDT 2014


These were failing under win 8 anyway.
---
 dlls/msxml3/tests/httpreq.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dlls/msxml3/tests/httpreq.c b/dlls/msxml3/tests/httpreq.c
index b82de03..68de61e 100644
--- a/dlls/msxml3/tests/httpreq.c
+++ b/dlls/msxml3/tests/httpreq.c
@@ -1457,14 +1457,12 @@ static void test_XMLHTTP(void)
     hr = IXMLHttpRequest_get_responseBody(xhr, &varbody);
     EXPECT_HR(hr, E_PENDING);
     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_I2(&varbody) = 1;
     hr = IXMLHttpRequest_get_responseStream(xhr, &varbody);
     EXPECT_HR(hr, E_PENDING);
     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 */
     hr = IXMLHttpRequest_send(xhr, dummy);
-- 
1.8.0




More information about the wine-patches mailing list