change
This commit is contained in:
+2
-2
@@ -41,7 +41,7 @@ class TestClientHelloBuilder(unittest.TestCase):
|
||||
|
||||
def test_build_client_hello_contains_sni(self):
|
||||
"""Test that built ClientHello contains the specified SNI."""
|
||||
sni = "auth.vercel.com"
|
||||
sni = "vercel.com"
|
||||
hello = ClientHelloBuilder.build_client_hello(sni=sni)
|
||||
|
||||
# The SNI should be present in the packet
|
||||
@@ -72,7 +72,7 @@ class TestClientHelloBuilder(unittest.TestCase):
|
||||
|
||||
def test_parse_client_hello_roundtrip(self):
|
||||
"""Test build and parse roundtrip."""
|
||||
sni = "auth.vercel.com"
|
||||
sni = "vercel.com"
|
||||
hello = ClientHelloBuilder.build_client_hello(sni=sni)
|
||||
parsed = ClientHelloBuilder.parse_client_hello(hello)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user