Skip to content

Commit

Permalink
Fixed self issue on test for 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
PonteIneptique committed Dec 15, 2016
1 parent 941d466 commit eaa121f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/resources/commonTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def call_with_simple(f):
:return:
"""
@functools.wraps(f)
def decorator(*args):
def decorator(s):
for arg_tuple in [True, False]:
f(*args, arg_tuple)
f(s, arg_tuple)
return decorator


Expand Down

0 comments on commit eaa121f

Please sign in to comment.