Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #52, #68, updated doc #67

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
error reporting corrections in been_called_times
sgissinger committed Nov 23, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d80cd000be7f628e7d057e752028512ef3cf18f4
4 changes: 2 additions & 2 deletions grappa/operators/been_called.py
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ class BeenCalledTimesOperator(Operator):
kind = Operator.Type.MATCHER

# Disable diff report
show_diff = True
show_diff = False

# Operator keywords
operators = ('been_called_times',)
@@ -143,8 +143,8 @@ class BeenCalledTimesOperator(Operator):
)

subject_message = Operator.Dsl.Message(
'a mock that has been called {call_count} times',
'a mock that has not been called {call_count} times',
'a mock that has been called {call_count} times',
)

@mock_implementation_validator