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: