CI Fix black

This commit is contained in:
Roman Yurchak 2021-11-16 22:14:36 +01:00
parent 3a9e21e424
commit 075116857f
1 changed files with 4 additions and 1 deletions

View File

@ -90,7 +90,10 @@ def test_handle_command_ldflags():
args = BuildArgs()
assert (
handle_command_wrap("gcc -Wl,--strip-all,--as-needed -Wl,--sort-common,-z,now,-Bsymbolic-functions -shared -c test.o -o test.so", args)
handle_command_wrap(
"gcc -Wl,--strip-all,--as-needed -Wl,--sort-common,-z,now,-Bsymbolic-functions -shared -c test.o -o test.so",
args,
)
== "emcc -Wl,-z,now -c test.o -o test.so"
)