Skip to content

Commit

Permalink
Merge pull request #57 from jceplaras/fix-e2e-test-incorrect-number-o…
Browse files Browse the repository at this point in the history
…f-arg

Resolve #56: Fix incorrect indent on test_incorrect_number_of_arguments on test_e2e
  • Loading branch information
matthewbalvanz-wf authored Oct 20, 2017
2 parents 5f8257b + 8ece1d6 commit 51dcda3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions e2e/contracts/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,7 @@ def two(a, b):
with pact:
two('one')

self.assertEqual(
e.exception.message, 'two() takes exactly 2 arguments (1 given)')
self.assertEqual(
e.exception.message,
'two() takes exactly 2 arguments (1 given)'
)

0 comments on commit 51dcda3

Please sign in to comment.