Skip to content

Commit

Permalink
Make minor style fixes to test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Jul 26, 2022
1 parent b40c8f1 commit 08a8a7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/wiring/test_wiring_with_wraps_decorator_py36.py
@@ -1,6 +1,6 @@
"""Test that wiring works properly with @functools.wraps decorator.
See issue #453 for details: https://github.com/ets-labs/python-dependency-injector/issues/454
See issue for details: https://github.com/ets-labs/python-dependency-injector/issues/454
"""

import functools
Expand Down Expand Up @@ -46,4 +46,4 @@ def test_wraps(container: Container):
container.wire(modules=[__name__])
container.config.from_dict({"value1": 42, "value2": 15})

assert sample() == 2+42+15
assert sample() == 2 + 42 + 15

0 comments on commit 08a8a7f

Please sign in to comment.