瀏覽代碼

Fix copy/paste

bel2125 5 年之前
父節點
當前提交
b4ea8028b2
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      unittest/public_server.c

+ 6 - 6
unittest/public_server.c

@@ -5036,22 +5036,22 @@ START_TEST(test_minimal_https_server_callback)
 	test_sleep(10);
 	test_sleep(10);
 
 
 	/* Call a test client */
 	/* Call a test client */
-	minimal_https_client_impl("127.0.0.1", 8443, "/hello", "Hello world");
+	minimal_https_client_check("127.0.0.1", 8443, "/hello", "Hello world");
 
 
 	/* Run the server for 15 seconds */
 	/* Run the server for 15 seconds */
 	test_sleep(1);
 	test_sleep(1);
 
 
 	/* Call a test client */
 	/* Call a test client */
-	minimal_https_client_impl("127.0.0.1", 8443, "/8", "Number eight");
+	minimal_https_client_check("127.0.0.1", 8443, "/8", "Number eight");
 
 
 	/* Run the server for 1 second */
 	/* Run the server for 1 second */
 	test_sleep(1);
 	test_sleep(1);
 
 
 	/* Call a test client */
 	/* Call a test client */
-	minimal_https_client_impl("127.0.0.1",
-	                          8443,
-	                          "/8?Altenative=Response",
-	                          "Altenative=Response");
+	minimal_https_client_check("127.0.0.1",
+	                           8443,
+	                           "/8?Altenative=Response",
+	                           "Altenative=Response");
 
 
 	/* Run the server for 5 seconds */
 	/* Run the server for 5 seconds */
 	test_sleep(5);
 	test_sleep(5);