Skip to content

Commit c7319df

Browse files
committed
fix(integration tests): black formatting
For some reason this file was not formatted. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 285d384 commit c7319df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration_tests/build/test_binary_static_linking.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
import host_tools.cargo_build as host
99
from framework import utils
1010

11+
1112
@pytest.mark.timeout(500)
1213
def test_firecracker_binary_static_linking():
1314
"""
1415
Test to make sure the firecracker binary is statically linked.
1516
"""
1617
fc_binary_path = host.get_binary("firecracker")
17-
_, stdout,stderr = utils.run_cmd(f"file {fc_binary_path}")
18+
_, stdout, stderr = utils.run_cmd(f"file {fc_binary_path}")
1819
assert "" in stderr
1920
# expected "statically linked" for aarch64 and
2021
# "static-pie linked" for x86_64
21-
assert "statically linked" in stdout or \
22-
"static-pie linked" in stdout
22+
assert "statically linked" in stdout or "static-pie linked" in stdout

0 commit comments

Comments
 (0)