fix(tests): remove unnecessary noqa directive from test function

This commit is contained in:
Harry
2026-01-26 01:12:07 +08:00
parent af17e20f99
commit 87dba2765b

View File

@ -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)