We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d4ebf commit 282cce2Copy full SHA for 282cce2
tests/integration/test_manylinux.py
@@ -623,7 +623,10 @@ def test_rpath(
623
name for name in w.namelist() if "testrpath.libs/lib" in name
624
)
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"])
+ assert all(
627
+ (any(f".libs/lib{lib}" in name for name in libraries))
628
+ for lib in ["a", "b", "d"]
629
+ )
630
for name in libraries:
631
with w.open(name) as f:
632
elf = ELFFile(io.BytesIO(f.read()))
0 commit comments