From bd1dd67892637401717002cac70e7dc2bf821481 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 10 May 2023 12:07:26 +1000 Subject: [PATCH] test: fix the oeffis pytest Since the soname was added, the liboeffis.so file no longer exists in the build directory - it is created on install. Not sure how this passed the CI pytest run but it certainly fails locally. --- test/test_oeffis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_oeffis.py b/test/test_oeffis.py index c68b6d8..1650b34 100644 --- a/test/test_oeffis.py +++ b/test/test_oeffis.py @@ -115,7 +115,7 @@ class LibOeffis(object): @staticmethod def _cdll(): - return ctypes.CDLL("liboeffis.so", use_errno=True) + return ctypes.CDLL("liboeffis.so.1", use_errno=True) @classmethod def _load(cls):