Skip to content

Commit

Permalink
Bug 1258497: allow mozunit to pass along kwargs; r=gps
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: DzmF3zF5jeD
  • Loading branch information
djmitche committed May 9, 2016
1 parent f7212f9 commit 90323ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/mozunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,5 @@ def _wrapped_exists(self, p):

return self._orig_path_exists(p)

def main(*args):
unittest.main(testRunner=MozTestRunner(),*args)
def main(*args, **kwargs):
unittest.main(testRunner=MozTestRunner(), *args, **kwargs)

0 comments on commit 90323ca

Please sign in to comment.