Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyvows/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def wrapper(*args, **kw):
def skip_if(condition, reason):
'''Topic or vow or context decorator. Causes a topic or vow to be skipped if `condition` is True

This is equivilent to `if condition: raise SkipTest(reason)`
This is equivalent to `if condition: raise SkipTest(reason)`
'''
from pyvows.core import Vows

Expand Down
2 changes: 1 addition & 1 deletion pyvows/reporting/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def _print_traceback():
self.indent += 2

### NOTE:
### Commented out try/except; potential debugging hinderance
### Commented out try/except; potential debugging hindrance

#try:

Expand Down
2 changes: 1 addition & 1 deletion pyvows/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self):
self.elapsed_time = 0.0

def _count_contexts(self, contexts=None, count_func=lambda context: 1):
'''Used interally for class properties
'''Used internally for class properties
`total_test_count`, `successful_tests`, and `errored_tests`.

'''
Expand Down