rsaenh/tests: Fix a copy & paste issue.

This commit is contained in:
Bruno Jesus 2015-02-18 12:25:21 -02:00 committed by Alexandre Julliard
parent 980c65f126
commit 4d43d364e8
1 changed files with 1 additions and 1 deletions

View File

@ -1728,7 +1728,7 @@ static void test_rc4(void)
dwLen = 0;
result = CryptGetKeyParam(hKey, KP_SALT, NULL, &dwLen, 0);
ok(result, "%08x\n", GetLastError());
if (BASE_PROV || STRONG_PROV || nt4)
if (BASE_PROV || STRONG_PROV)
ok(dwLen == 11, "expected salt length 11, got %d\n", dwLen);
else
ok(dwLen == 0 || broken(nt4 && dwLen == 11), "expected salt length 0, got %d\n", dwLen);