Skip to content

Commit d5d4ebf

Browse files
committed
fix result
1 parent c8cdf8f commit d5d4ebf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_manylinux.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,8 @@ def test_rpath(
622622
libraries = tuple(
623623
name for name in w.namelist() if "testrpath.libs/lib" in name
624624
)
625-
assert len(libraries) == 2
626-
assert any(".libs/liba" in name for name in libraries)
625+
assert len(libraries) == 3
626+
assert all((any(f".libs/lib{lib}" in name for name in libraries)) for lib in ["a", "b", "d"])
627627
for name in libraries:
628628
with w.open(name) as f:
629629
elf = ELFFile(io.BytesIO(f.read()))

0 commit comments

Comments
 (0)