Skip to content

Commit

Permalink
Fix incorrect indent on test_incorrect_number_of_arguments on test_e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
jceplaras committed Oct 13, 2017
1 parent 5f8257b commit 8ece1d6
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 8ece1d6

Please sign in to comment.