Skip to content

Commit 254be4c

Browse files
committed
Remove http from host
1 parent 5ab478f commit 254be4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/framework_azure/test_application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_ping():
3939
# response = requests.get("http://127.0.0.1:8080/basic?user=Reli")
4040
try:
4141
print(f"{AZURE_HOST}, {AZURE_PORT}")
42-
response = requests.get(f"http://{AZURE_HOST}:{AZURE_PORT}")
42+
response = requests.get(f"{AZURE_HOST}:{AZURE_PORT}")
4343
except:
4444
print("127.0.0.1:8080")
4545
response = requests.get("http://127.0.0.1:8080")

0 commit comments

Comments
 (0)