File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ def test_hook_impl_initialization() -> None:
471
471
472
472
# Verify attributes are set correctly
473
473
assert hook_impl .function == function
474
- assert hook_impl .argnames == ("x" ,)
474
+ assert hook_impl .argnames == ("x" ,)
475
475
assert hook_impl .kwargnames == ()
476
476
assert hook_impl .plugin == plugin
477
477
assert hook_impl .opts == hook_impl_opts
@@ -501,7 +501,6 @@ def test_hook_impl_representation() -> None:
501
501
502
502
# Verify __repr__ method
503
503
expected_repr = (
504
- f"<HookImpl plugin_name={ saferepr (plugin_name )} , "
505
- f"plugin={ saferepr (plugin )} >"
504
+ f"<HookImpl plugin_name={ saferepr (plugin_name )} , " f"plugin={ saferepr (plugin )} >"
506
505
)
507
- assert repr (hook_impl ) == expected_repr
506
+ assert repr (hook_impl ) == expected_repr
You can’t perform that action at this time.
0 commit comments