From: Hans Leidekker hans@codeweavers.com
--- dlls/adsldp/tests/ldap.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/dlls/adsldp/tests/ldap.c b/dlls/adsldp/tests/ldap.c index 7404b62a231..4506c232578 100644 --- a/dlls/adsldp/tests/ldap.c +++ b/dlls/adsldp/tests/ldap.c @@ -62,8 +62,6 @@ static const struct { L"LDAP://ldap.forumsys.com/rootDSE/invalid", E_ADS_BAD_PATHNAME }, { L"LDAP://ldap.forumsys.com/rootDSE", S_OK, S_OK, S_OK, NULL, NULL, 0 }, { L"LDAP://ldap.forumsys.com/rootDSE", S_OK, S_OK, S_OK, L"CN=read-only-admin,DC=example,DC=com", L"password", 0 }, - - /*{ L"LDAP://invalid", __HRESULT_FROM_WIN32(ERROR_DS_INVALID_DN_SYNTAX) }, takes way too much time */ };
static void test_LDAP(void) @@ -340,7 +338,7 @@ static void test_DirectorySearch(void) L"LDAP://ldap.forumsys.com/OU=scientists,DC=example,DC=com", ADS_SCOPE_BASE, { { L"uniqueMember", ADSTYPE_CASE_IGNORE_STRING, { L"uid=einstein,dc=example,dc=com", - L"uid=galieleo,dc=example,dc=com", L"uid=tesla,dc=example,dc=com", L"uid=newton,dc=example,dc=com", + L"uid=tesla,dc=example,dc=com", L"uid=newton,dc=example,dc=com", L"uid=galileo,dc=example,dc=com", L"uid=training,dc=example,dc=com", L"uid=jmacy,dc=example,dc=com", NULL } }, { L"ou", ADSTYPE_CASE_IGNORE_STRING, { L"scientists", NULL } }, { L"cn", ADSTYPE_CASE_IGNORE_STRING, { L"Scientists", NULL } }, @@ -354,7 +352,7 @@ static void test_DirectorySearch(void) L"LDAP://ldap.forumsys.com/OU=scientists,DC=example,DC=com", ADS_SCOPE_SUBTREE, { { L"uniqueMember", ADSTYPE_CASE_IGNORE_STRING, { L"uid=einstein,dc=example,dc=com", - L"uid=galieleo,dc=example,dc=com", L"uid=tesla,dc=example,dc=com", L"uid=newton,dc=example,dc=com", + L"uid=tesla,dc=example,dc=com", L"uid=newton,dc=example,dc=com", L"uid=galileo,dc=example,dc=com", L"uid=training,dc=example,dc=com", L"uid=jmacy,dc=example,dc=com", NULL } }, { L"ou", ADSTYPE_CASE_IGNORE_STRING, { L"scientists", NULL } }, { L"cn", ADSTYPE_CASE_IGNORE_STRING, { L"Scientists", NULL } },