secur32/tests: Don't check the exact number of cipher bits.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2015-12-21 18:20:29 +01:00
parent 9f532321d0
commit 9ab03dd7bb

View file

@ -927,8 +927,7 @@ todo_wine
status = pQueryContextAttributesA(&context, SECPKG_ATTR_CONNECTION_INFO, (void*)&conn_info);
ok(status == SEC_E_OK, "QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x\n", status);
if(status == SEC_E_OK) {
ok(conn_info.dwCipherStrength == 128 || conn_info.dwCipherStrength == 168,
"conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength);
ok(conn_info.dwCipherStrength >= 128, "conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength);
ok(conn_info.dwHashStrength >= 128, "conn_info.dwHashStrength = %d\n", conn_info.dwHashStrength);
}