Skip to content

Commit

Permalink
fix broken testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenifer Tabita Ciuciu-Kiss committed Oct 21, 2024
1 parent b4e7beb commit ef8bbc6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
import time
import subprocess
import itertools
from ontologytimemachine.custom_proxy import IP, PORT
from ontologytimemachine.utils.config import Config


default_cfg: Config = Config()

IP = default_cfg.port
PORT = default_cfg.host

PROXY = f"{IP}:{PORT}"
HTTP_PROXY = f"http://{PROXY}"
HTTPS_PROXY = f"http://{PROXY}"
Expand Down

0 comments on commit ef8bbc6

Please sign in to comment.