Skip to content

Commit

Permalink
Add test case for combined plus minus prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
cknv committed Apr 18, 2024
1 parent 34587a5 commit 5a65ecc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/validators/test_int.py
Expand Up @@ -48,6 +48,7 @@
('+4_2.0', 42),
('+04_2.0', 42),
('++4_2', Err('Input should be a valid integer, unable to parse string as an integer')),
('+-1', Err('Input should be a valid integer, unable to parse string as an integer')),
('4_2', 42),
('0_42', 42),
('4_2.0', 42),
Expand Down

0 comments on commit 5a65ecc

Please sign in to comment.