Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
bbangert committed Feb 1, 2012
1 parent 711fd9d commit 7ad22e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions retools/tests/jobs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def echo_default(default='hello'):
def echo_default(default='hello'): # pragma: nocover
return default


def echo_back():
def echo_back(): # pragma: nocover
return 'howdy all'
3 changes: 1 addition & 2 deletions retools/tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ def _makeKey(self, func, deco_args):
return func_namespace(func, deco_args)

def test_func_name(self):
def a_func():
pass
def a_func(): pass
eq_('retools.tests.test_util.a_func.', self._makeKey(a_func, []))

def test_class_method_name(self):
Expand Down

0 comments on commit 7ad22e4

Please sign in to comment.