From cddf866ef664b62c96d68fc275bfacffaa89a0f2 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Fri, 23 Oct 2020 17:06:44 +0800 Subject: [PATCH] tests/test_archpkg: use "dbus" to test "provided" This package provides a package and a so. --- tests/test_archpkg.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_archpkg.py b/tests/test_archpkg.py index 84bb31c..5f3d5ef 100644 --- a/tests/test_archpkg.py +++ b/tests/test_archpkg.py @@ -20,10 +20,10 @@ async def test_archpkg_strip_release(get_version): @flaky async def test_archpkg_provided(get_version): - assert await get_version("jsoncpp", { + assert await get_version("dbus", { "source": "archpkg", - "provided": "libjsoncpp.so", - }) == "24-64" + "provided": "libdbus-1.so", + }) == "3-64" @flaky async def test_archpkg_provided_strip(get_version):