Skip to content

Commit

Permalink
change err field count value in pre-existing test
Browse files Browse the repository at this point in the history
  • Loading branch information
hhovsepi committed Apr 23, 2024
1 parent 56561af commit f734227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/test_exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def test_out_of_permission_scope(ford_car):
except Exception as e:
assert isinstance(e, SmartcarException)

# 8 fields stated in exception.py + 'message'
assert len(e.__dict__.keys()) == 9
# 9 fields stated in exception.py + 'message'
assert len(e.__dict__.keys()) == 10
assert e.status_code == 403
assert e.code is None

Expand Down

0 comments on commit f734227

Please sign in to comment.