Skip to content

Commit

Permalink
Removed skip mark on test for issue 34 as it is already solved
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Nov 18, 2023
1 parent f9409ad commit 525ce1f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,16 @@
from makefun import wraps, with_signature, partial, create_function


@pytest.mark.skip("known to fail")
def test_wraps_varpositional():
def test_wraps_varpositional_issue_34():
""" test for https://github.com/smarie/python-makefun/issues/34 """
def f(a, *args):
pass
return a, args

@wraps(f)
def foo(*args, **kwargs):
return f(*args, **kwargs)

foo('hello', 12)
assert foo('hello', 12) == ("hello", (12,))


def test_varpositional2():
Expand Down

0 comments on commit 525ce1f

Please sign in to comment.