Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyWood committed Aug 29, 2022
1 parent 1710492 commit e3e4f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/validators/test_dict.py
Expand Up @@ -183,10 +183,10 @@ def __len__(self):
'loc': [],
'message': (
'Unable to convert mapping to a dictionary, error: '
'ValueError: Expected tuple of length 2, but got tuple of length 1.'
'ValueError: expected tuple of length 2, but got tuple of length 1'
),
'input_value': HasRepr(IsStr(regex='.+BadMapping object at.+')),
'context': {'error': 'ValueError: Expected tuple of length 2, but got tuple of length 1.'},
'context': {'error': 'ValueError: expected tuple of length 2, but got tuple of length 1'},
}
]

Expand Down

0 comments on commit e3e4f3f

Please sign in to comment.