diff --git a/tests/py/dynamo/conversion/test_cumsum_aten.py b/tests/py/dynamo/conversion/test_cumsum_aten.py index ab71b4339f..5c2147e281 100644 --- a/tests/py/dynamo/conversion/test_cumsum_aten.py +++ b/tests/py/dynamo/conversion/test_cumsum_aten.py @@ -33,9 +33,7 @@ def forward(self, x): ) return - self.run_test( - Cumsum(), inputs, immutable_weights=False, use_dynamo_tracer=True - ) + self.run_test(Cumsum(), inputs, immutable_weights=False, use_dynamo_tracer=True) @parameterized.expand( [ @@ -108,10 +106,7 @@ def forward(self, x): == opt_shape[positive_dim] == max_shape[positive_dim] ) - if ( - has_static_trip_count - and not is_tensorrt_rtx_version_supported("1.7") - ): + if has_static_trip_count and not is_tensorrt_rtx_version_supported("1.7"): with self.assertRaises(UnsupportedOperatorException): self.run_test_with_dynamic_shape( Cumsum(),