From 9d8ab7001e9dad2c075e0357d2a612d0aeaa629a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=B5=E5=B0=8F=E5=87=A1?= <2672931+whyb@users.noreply.github.com> Date: Tue, 26 Nov 2024 17:46:34 +0800 Subject: [PATCH] fix build ci error --- tests/test_onnxslim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_onnxslim.py b/tests/test_onnxslim.py index d52eeb7..9338f83 100644 --- a/tests/test_onnxslim.py +++ b/tests/test_onnxslim.py @@ -14,7 +14,7 @@ class TestFunctional: def __test_command_basic(self, request, in_model_path=FILENAME, out_model_name="resnet18.onnx", arg_str=""): with tempfile.TemporaryDirectory() as tempdir: - summary = summarize_model(slim(in_model_path), request.node.name)) + summary = summarize_model(slim(in_model_path), request.node.name) print_model_info_as_table(summary) out_model_path = os.path.join(tempdir, out_model_name) slim(in_model_path, out_model_path)