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

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 9ab03dd7bbded6f9a2a93e5fec2f60b61125140a)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c
index 35100f7..51c22d5 100644
--- a/dlls/secur32/tests/schannel.c
+++ b/dlls/secur32/tests/schannel.c
@@ -927,8 +927,7 @@
     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);
     }