Skip to content

Commit

Permalink
Remove useless super
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed Sep 20, 2024
1 parent 21a9144 commit 31455c7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fire/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ def assertOutputMatches(self, stdout='.*', stderr='.*', capture=True):
raise AssertionError('%s: Expected %r to match %r' %
(name, value, regexp))

def assertRaisesRegex(self, *args, **kwargs): # pylint: disable=arguments-differ
return super(BaseTestCase, self).assertRaisesRegex(*args, **kwargs) # pylint: disable=no-member

@contextlib.contextmanager
def assertRaisesFireExit(self, code, regexp='.*'):
"""Asserts that a FireExit error is raised in the context.
Expand Down

0 comments on commit 31455c7

Please sign in to comment.