From d870281540b4899185a0ad25904408c3b9a668a7 Mon Sep 17 00:00:00 2001 From: Game_Time <108236317+RayBytes@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:43:24 +0500 Subject: [PATCH] Fix tests (lmao) --- tests/__main__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/__main__.py b/tests/__main__.py index 335d4d5..fc708df 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -83,19 +83,19 @@ def test_models(): def test_all(): """Runs all tests.""" - print("Running test on API server to check if its running.." + print("Running test on API server to check if its running..") print(test_server()) - print("Running a api endpoint to see if requests can go through..." + print("Running a api endpoint to see if requests can go through...") print(test_api()) - print("Checking if the API works with the python library..." + print("Checking if the API works with the python library...") print(test_library()) print("Checking if the moderation endpoint works...") print(test_library_moderation()) - print("Checking if all models can be GET" + print("Checking if all models can be GET") print(test_models()) def test_api_moderation(model: str=MODEL, messages: List[dict]=None) -> dict: