Skip to content

Commit 2f13cf6

Browse files
committed
Give the correct string
1 parent 6a0c67a commit 2f13cf6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/security_and_privacy/test_tls_v1_2_protocol.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ def test_tls_v1_2_protocol(driver: Firefox):
4141
EC.presence_of_element_located((By.ID, "security-technical-shortform"))
4242
)
4343

44-
expected_technical_details = "Connection Encrypted (TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, 128 bit keys, TLS 1.2)"
44+
expected_technical_details = ("Connection Encrypted (TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 256 bit keys, "
45+
"TLS 1.2)")
4546
assert (
4647
technical_details.get_attribute("value") == expected_technical_details
4748
), f"Expected '{expected_technical_details}' but found '{technical_details.get_attribute('value')}'"

0 commit comments

Comments
 (0)