From d5a7ada6ffe9820b020f1138222ff48b2b0e737d Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Sun, 3 Jan 2021 17:11:32 +0100 Subject: [PATCH] TST Fix test_pywasmcross.py::test_handle_command (#1032) --- pyodide_build/tests/test_pywasmcross.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyodide_build/tests/test_pywasmcross.py b/pyodide_build/tests/test_pywasmcross.py index 41101d849..3c77377b2 100644 --- a/pyodide_build/tests/test_pywasmcross.py +++ b/pyodide_build/tests/test_pywasmcross.py @@ -64,7 +64,7 @@ def test_handle_command(): args = Args(cflags="", cxxflags="", ldflags="", host="", replace_libs="bob=fred") assert ( handle_command_wrap("gcc -shared -c test.o -lbob -o test.so", args) - == "emcc -shared -c test.bc -lfred -o test.wasm" + == "emcc -shared -c test.o -lfred -o test.wasm" ) # compilation checks in numpy