Skip to content

Commit

Permalink
Accept both kwargs and args
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Jul 22, 2021
1 parent 5ee92d9 commit 9b1fa52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sync2jira/confluence_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,6 @@ def get_auth_object(self):
class mock_confluence_client(object):
mock_data = False
update_stat = False
def update_stat_value(self, **kwargs): return
def update_stat_page(self, **kwargs): return
def update_stat_value(self, *args, **kwargs): return
def update_stat_page(self, *args, **kwargs): return
confluence_client = mock_confluence_client()

0 comments on commit 9b1fa52

Please sign in to comment.