Skip to content

Commit 2d9ebf3

Browse files
authored
Merge pull request #97 from fitztrev/lila-docker-port
update lila-docker port
2 parents 668a3a2 + 9d6c69d commit 2d9ebf3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration/run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python3 -m pip install -e . --no-cache-dir
44

55
attempts=0
66
while [ $attempts -lt 30 ]; do
7-
if curl -s http://bdit_lila:9663 >/dev/null; then
7+
if curl -s http://bdit_lila:8080 >/dev/null; then
88
break
99
fi
1010
echo "⌛ Waiting for lila to start..."

integration/test_lila_account.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import berserk
22
import pytest
33

4-
BASE_URL = "http://bdit_lila:9663"
4+
BASE_URL = "http://bdit_lila:8080"
55

66
@pytest.fixture(scope="module")
77
def client():

0 commit comments

Comments
 (0)