Commit e05b1d0a authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

setupapi: Remove a test of an undocumented function that is inconsistent across platforms.

parent 9b968811
...@@ -159,7 +159,7 @@ static void test_StringTableLookUpString(void) ...@@ -159,7 +159,7 @@ static void test_StringTableLookUpString(void)
static void test_StringTableStringFromId(void) static void test_StringTableStringFromId(void)
{ {
WCHAR *string2, *string3; WCHAR *string2;
int result; int result;
/* correct */ /* correct */
...@@ -168,13 +168,6 @@ static void test_StringTableStringFromId(void) ...@@ -168,13 +168,6 @@ static void test_StringTableStringFromId(void)
result=lstrcmpiW(string, string2); result=lstrcmpiW(string, string2);
ok(result==0,"StringID %p does not match requested StringID %p\n",string,string2); ok(result==0,"StringID %p does not match requested StringID %p\n",string,string2);
/* This should never work */
string3=pStringTableStringFromId(table,0);
ok(string3!=NULL,"Failed to look up string by ID from String Table\n");
result=lstrcmpiW(string, string3);
ok(result!=0,"StringID %p matches requested StringID %p\n",string,string3);
} }
START_TEST(stringtable) START_TEST(stringtable)
......
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