Skip to content

Commit ab4bc1a

Browse files
committed
Fix remote url in tests
1 parent 677d60b commit ab4bc1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def connect(provider, database, isolation_level='DEFERRED'):
178178
if provider == "libsql-remote":
179179
from urllib import request
180180
try:
181-
res = request.urlopen("http://localhost:8080/reset")
181+
res = request.urlopen("http://localhost:8080/v2")
182182
except Exception as _:
183183
raise Exception("libsql-remote server is not running")
184184
if res.getcode() != 200:

0 commit comments

Comments
 (0)