fix host in test.py

This commit is contained in:
alyssadev 2023-09-17 06:47:09 +10:00
parent 37b8b52184
commit 92d0022597

View file

@ -2,8 +2,8 @@
from requests import get,put,post,delete,patch,request
from os import environ
host = environ.get("HOST", "https://linkie.alyssa-dev-smith.workers.dev")
auth = {"Authorization": environ.get("AUTH", "")}
host = environ.get("HOST", "https://linkie.username.workers.dev")
auth = {"Authorization": environ.get("AUTH_KEY", "")}
path = environ.get("TEST_PATH", "/devtestpath")
try: