Skip to content

Commit f63f371

Browse files
committed
Requested changes
1 parent f134db0 commit f63f371

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docker-compose-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949

5050
caddy:
5151
image: caddy
52-
container_name: caddy
52+
container_name: proxy
5353
restart: unless-stopped
5454
ports:
5555
- 5555:5555

tests/agent/test_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
)
1616
from fishjam.events.allowed_notifications import AllowedNotification
1717

18-
HOST = "caddy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
18+
HOST = "proxy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
1919
FISHJAM_ID = f"http://{HOST}:5555"
2020
SERVER_API_TOKEN = os.getenv("MANAGEMENT_TOKEN", "development")
2121

tests/test_notifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from tests.support.peer_socket import PeerSocket
2424
from tests.support.webhook_notifier import run_server
2525

26-
FISHJAM_HOST = "caddy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
26+
FISHJAM_HOST = "proxy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
2727
FISHJAM_URL = f"http://{FISHJAM_HOST}:5555"
2828
FISHJAM_ID = FISHJAM_URL
2929
SERVER_API_TOKEN = os.getenv("MANAGEMENT_TOKEN", "development")

tests/test_room_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
VideoCodec,
2828
)
2929

30-
HOST = "caddy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
30+
HOST = "proxy" if os.getenv("DOCKER_TEST") == "TRUE" else "localhost"
3131
FISHJAM_ID = f"http://{HOST}:5555"
3232
MANAGEMENT_TOKEN = os.getenv("MANAGEMENT_TOKEN", "development")
3333

0 commit comments

Comments
 (0)