Skip to content

Commit

Permalink
Merge pull request #121 from release-engineering/args
Browse files Browse the repository at this point in the history
Accept both kwargs and args
  • Loading branch information
ralphbean committed Jul 22, 2021
2 parents 5a3b0af + 9b1fa52 commit 33e4f24
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 33e4f24

Please sign in to comment.