diff --git a/tests/test_ngrok.py b/tests/test_ngrok.py index fcc642f..dfde6f4 100644 --- a/tests/test_ngrok.py +++ b/tests/test_ngrok.py @@ -911,7 +911,7 @@ def test_upgrade_ngrok_config_file_v2_to_v3(self): ngrok.connect(pyngrok_config=pyngrok_config_v3) @unittest.skipIf(not os.environ.get("NGROK_AUTHTOKEN"), "NGROK_AUTHTOKEN environment variable not set") - def test_full_v2_http_tunnel_definitions(self): + def test_full_config_v2_http_tunnel_definitions(self): # GIVEN config = { "version": "2", @@ -966,7 +966,7 @@ def test_full_v2_http_tunnel_definitions(self): ngrok.connect(name="my-tunnel", pyngrok_config=pyngrok_config) @unittest.skipIf(not os.environ.get("NGROK_AUTHTOKEN"), "NGROK_AUTHTOKEN environment variable not set") - def test_full_v2_tcp_tunnel_definitions(self): + def test_full_config_v2_tcp_tunnel_definitions(self): # GIVEN config = { "version": "2", @@ -1003,7 +1003,7 @@ def test_full_v2_tcp_tunnel_definitions(self): ngrok.connect(name="my-tunnel", pyngrok_config=pyngrok_config) @unittest.skipIf(not os.environ.get("NGROK_AUTHTOKEN"), "NGROK_AUTHTOKEN environment variable not set") - def test_full_v2_tls_tunnel_definitions(self): + def test_full_config_v2_tls_tunnel_definitions(self): # GIVEN config = { "version": "2", @@ -1045,7 +1045,7 @@ def test_full_v2_tls_tunnel_definitions(self): with self.assertRaises(PyngrokNgrokHTTPError): ngrok.connect(name="my-tunnel", pyngrok_config=pyngrok_config) - # def test_full_v3_tunnel_definitions(self): + # def test_full_config_v3_tunnel_definitions(self): # # GIVEN # config = { # "version": "3", @@ -1060,7 +1060,6 @@ def test_full_v2_tls_tunnel_definitions(self): # "host_header": "host-header", # "crt": "crt", # "key": "key", - # "client_cas": "clientCas", # "remote_addr": "remoteAddr", # "metadata": "metadata", # "compression": "false",