tiny remove deprecated endpoint call (#13607)

This commit is contained in:
b8zhong
2025-12-05 09:54:49 -08:00
committed by GitHub
parent 1569fc7f49
commit ec7b2c16d9
36 changed files with 59 additions and 59 deletions
+3 -3
View File
@@ -113,7 +113,7 @@ class TestServerUpdateWeightsFromDisk(CustomTestCase):
return response.json()
def get_model_info(self):
response = requests.get(self.base_url + "/get_model_info")
response = requests.get(self.base_url + "/model_info")
model_path = response.json()["model_path"]
print(json.dumps(response.json()))
return model_path
@@ -254,7 +254,7 @@ class TestServerUpdateWeightsFromDiskAbortAllRequests(CustomTestCase):
return response.json()
def get_model_info(self):
response = requests.get(self.base_url + "/get_model_info")
response = requests.get(self.base_url + "/model_info")
model_path = response.json()["model_path"]
print(json.dumps(response.json()))
return model_path
@@ -386,7 +386,7 @@ class TestUpdateWeightsFromDiskParameterized(CustomTestCase):
return response.json()["text"]
def get_model_info():
response = requests.get(base_url + "/get_model_info")
response = requests.get(base_url + "/model_info")
model_path = response.json()["model_path"]
print(json.dumps(response.json()))
return model_path