simplex-chat: sync nodejs and python libs with 7.0.0-beta.3 types (#7219)

This commit is contained in:
sh
2026-07-08 12:01:17 +04:00
committed by GitHub
parent 8b537fbc3a
commit a4e3a1ea11
4 changed files with 12 additions and 10 deletions
@@ -1,6 +1,7 @@
from unittest.mock import patch
import pytest
from simplex_chat._native import _platform_tag, _libs_url, _libname
from simplex_chat._version import LIBS_VERSION
@patch("sys.platform", "linux")
@@ -42,7 +43,7 @@ def test_url_sqlite(_):
assert (
_libs_url("sqlite")
== "https://github.com/simplex-chat/simplex-chat-libs/releases/download/"
"v6.5.2/simplex-chat-libs-linux-x86_64.zip"
f"v{LIBS_VERSION}/simplex-chat-libs-linux-x86_64.zip"
)
@@ -51,5 +52,5 @@ def test_url_postgres(_):
assert (
_libs_url("postgres")
== "https://github.com/simplex-chat/simplex-chat-libs/releases/download/"
"v6.5.2/simplex-chat-libs-linux-x86_64-postgres.zip"
f"v{LIBS_VERSION}/simplex-chat-libs-linux-x86_64-postgres.zip"
)