From 8f9d6b26403d8a4e5d25116ccc890ba194f70a73 Mon Sep 17 00:00:00 2001 From: Hoonkyung Cho Date: Thu, 16 Jan 2025 10:24:37 +0000 Subject: [PATCH] chore: minor lint issue --- tests/py/dynamo/conversion/test_deconvolution_aten.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/py/dynamo/conversion/test_deconvolution_aten.py b/tests/py/dynamo/conversion/test_deconvolution_aten.py index 046c646871..1909cb8fbb 100644 --- a/tests/py/dynamo/conversion/test_deconvolution_aten.py +++ b/tests/py/dynamo/conversion/test_deconvolution_aten.py @@ -260,8 +260,8 @@ def forward(self, x): enable_passes=True, ) - # # Testing with (-1, -1, -1, -1, -1) results into Error: - # # AssertionError: Channel dim can't be dynamic for deconvolution. + # Testing with (-1, -1, -1, -1, -1) results into Error: + # AssertionError: Channel dim can't be dynamic for deconvolution. def test_deconv3d_with_dynamic_shape(self): class TestModule(torch.nn.Module):