diff --git a/tests/README.md b/tests/README.md index 5ddc8d1..fa80ccf 100644 --- a/tests/README.md +++ b/tests/README.md @@ -14,7 +14,7 @@ Output of the tests: Testing will start on http://127.0.0.1:5000/ Sucessfully logged in ✔ - Sucessfully created service Test Service on with public port 1337 ✔ + Sucessfully created service Test Service with public port 1337 ✔ Sucessfully received the internal port 38222 ✔ Sucessfully started service with id test-service ✔ Successfully tested first proxy with no regex ✔ diff --git a/tests/test.py b/tests/test.py index 6f431bb..a21257b 100755 --- a/tests/test.py +++ b/tests/test.py @@ -40,7 +40,7 @@ puts(f"Sucessfully logged in ✔", color=colors.green) #Create new Service req = s.post(f"{args.address}api/services/add" , json={"name":args.service_name,"port":args.service_port}) assert req.json()["status"] == "ok", f"Test Failed: Couldn't create service {req.text} ✔" -puts(f"Sucessfully created service {args.service_name} on with public port {args.service_port} ✔", color=colors.green) +puts(f"Sucessfully created service {args.service_name} with public port {args.service_port} ✔", color=colors.green) #Find the Service req = s.get(f"{args.address}api/services")