From 87dba2765b0c22e062a463031eba07985ca7d940 Mon Sep 17 00:00:00 2001 From: Harry Date: Mon, 26 Jan 2026 01:12:07 +0800 Subject: [PATCH] fix(tests): remove unnecessary noqa directive from test function --- api/tests/unit_tests/extensions/otel/decorators/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/unit_tests/extensions/otel/decorators/test_base.py b/api/tests/unit_tests/extensions/otel/decorators/test_base.py index d28f351b1b..a42f861bb7 100644 --- a/api/tests/unit_tests/extensions/otel/decorators/test_base.py +++ b/api/tests/unit_tests/extensions/otel/decorators/test_base.py @@ -24,7 +24,7 @@ class TestTraceSpanDecorator: """Test that decorated function executes and returns correct value.""" @trace_span() - def test_func(x, y): # noqa: FURB118 + def test_func(x, y): return x + y result = test_func(2, 3)