mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-04-03 11:40:37 +02:00
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:
parent
333e98a191
commit
bd1dd67892
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue