Skip to content

Commit

Permalink
🩹 modify test case
Browse files Browse the repository at this point in the history
  • Loading branch information
sanggi-wjg committed Apr 16, 2023
1 parent 938fbec commit 574f4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_thread_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ def func_exception_hook(*args):
def test_using_thread_decorator(self):
# given
@using_thread
def print_something(number, **kwargs):
print(number, kwargs)
def print_something(number, *args, **kwargs):
print(number, args, kwargs)

# when
for i in range(10):
# then
print_something(i, name=f"thread-{i}")
print_something(i, i, i, name=f"thread-{i}")

def test_logger(self):
# given
Expand Down

0 comments on commit 574f4fe

Please sign in to comment.