diff --git a/docs/usage.rst b/docs/usage.rst index 3f804eb..cd39db6 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -886,7 +886,7 @@ openvsx The extension's Unique Identifier on open-vsx.org, e.g. ``ritwickdey.LiveServer``. Check Visual Studio Code Marketplace -~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :: source = "vsmarketplace" diff --git a/tests/test_archpkg.py b/tests/test_archpkg.py index b15424e..ac749bd 100644 --- a/tests/test_archpkg.py +++ b/tests/test_archpkg.py @@ -7,16 +7,16 @@ pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net] @flaky async def test_archpkg(get_version): - assert await get_version("ipw2100-fw", { + assert await get_version("base", { "source": "archpkg", - }) == "1.3-10" + }) == "3-1" @flaky async def test_archpkg_strip_release(get_version): - assert await get_version("ipw2100-fw", { + assert await get_version("base", { "source": "archpkg", "strip_release": True, - }) == "1.3" + }) == "3" @flaky async def test_archpkg_provided(get_version): diff --git a/tests/test_openvsx.py b/tests/test_openvsx.py index 862ed3a..8ce80db 100644 --- a/tests/test_openvsx.py +++ b/tests/test_openvsx.py @@ -7,4 +7,4 @@ pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net] async def test_openvsx(get_version): assert await get_version("usernamehw.indent-one-space", { "source": "openvsx", - }) == "0.2.7" + }) == "0.3.0" diff --git a/tests/test_pacman.py b/tests/test_pacman.py index 4b1a964..006223f 100644 --- a/tests/test_pacman.py +++ b/tests/test_pacman.py @@ -11,12 +11,12 @@ pytestmark = [pytest.mark.asyncio, reason="requires synced pacman databases")] async def test_pacman(get_version): - assert await get_version("ipw2100-fw", { + assert await get_version("base", { "source": "pacman", - }) == "1.3-10" + }) == "3-1" async def test_pacman_strip_release(get_version): - assert await get_version("ipw2100-fw", { + assert await get_version("base", { "source": "pacman", "strip_release": 1, - }) == "1.3" + }) == "3" diff --git a/tests/test_vsmarketplace.py b/tests/test_vsmarketplace.py index ad68b3c..162e9fa 100644 --- a/tests/test_vsmarketplace.py +++ b/tests/test_vsmarketplace.py @@ -7,4 +7,4 @@ pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net] async def test_vsmarketplace(get_version): assert await get_version("usernamehw.indent-one-space", { "source": "vsmarketplace", - }) == "0.2.8" + }) == "0.3.0"