Skip to content

Commit

Permalink
msxml3/tests: Remove unused test field.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlehman25 authored and julliard committed Nov 14, 2023
1 parent e0591fa commit 320f927
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions dlls/msxml3/tests/domdoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -13653,14 +13653,13 @@ todo_wine {
typedef struct _namespace_as_attribute_t {
const GUID *guid;
const char *clsid;
const char *xmlns_uri;
} namespace_as_attribute_t;

static const namespace_as_attribute_t namespace_as_attribute_test_data[] = {
{ &CLSID_DOMDocument, "CLSID_DOMDocument", "" },
{ &CLSID_DOMDocument2, "CLSID_DOMDocument2", "" },
{ &CLSID_DOMDocument26, "CLSID_DOMDocument26", "" },
{ &CLSID_DOMDocument30, "CLSID_DOMDocument30", "" },
{ &CLSID_DOMDocument, "CLSID_DOMDocument" },
{ &CLSID_DOMDocument2, "CLSID_DOMDocument2" },
{ &CLSID_DOMDocument26, "CLSID_DOMDocument26" },
{ &CLSID_DOMDocument30, "CLSID_DOMDocument30" },
{ 0 }
};

Expand Down Expand Up @@ -13788,7 +13787,7 @@ static void test_namespaces_as_attributes(void)
{
ok(hr == S_OK, "Failed to get namespace URI, hr %#lx.\n", hr);
if (test->prefixes[i] && !strcmp(test->prefixes[i], "xmlns"))
ok(!lstrcmpW(str, _bstr_(entry->xmlns_uri)), "got %s\n", wine_dbgstr_w(str));
ok(!SysStringLen(str), "got %s\n", wine_dbgstr_w(str));
else
ok(!lstrcmpW(str, _bstr_(test->uris[i])), "got %s\n", wine_dbgstr_w(str));
SysFreeString(str);
Expand Down

0 comments on commit 320f927

Please sign in to comment.