Skip to content

Commit

Permalink
Rename duplicate test method, fix misleading comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Apr 15, 2015
1 parent 252b72c commit f8b88a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zdaemon/tests/testzdoptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ class HasHelp(self.OptionsClass):
__doc__ = 'Some help'
self.help_test_helper(HasHelp,{},'Some help')

def test_no_help_with_doc_kw(self):
# test what happens when the subclass has None for __doc__,
# but doc is supplied to realize
def test_has_help_with_doc_kw(self):
# test what happens when the subclass has something for __doc__,
# and doc is also supplied to realize
class HasHelp(self.OptionsClass):
__doc__ = 'Some help'
self.help_test_helper(HasHelp,{'doc':'Example help'},'Example help')
Expand Down

0 comments on commit f8b88a3

Please sign in to comment.