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.
This commit is contained in:
Peter Hutterer 2023-05-10 12:07:26 +10:00
parent 333e98a191
commit bd1dd67892

View file

@ -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):