Skip to content

Commit 5a65ecc

Browse files
committed
Add test case for combined plus minus prefix
1 parent 34587a5 commit 5a65ecc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/validators/test_int.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
('+4_2.0', 42),
4949
('+04_2.0', 42),
5050
('++4_2', Err('Input should be a valid integer, unable to parse string as an integer')),
51+
('+-1', Err('Input should be a valid integer, unable to parse string as an integer')),
5152
('4_2', 42),
5253
('0_42', 42),
5354
('4_2.0', 42),

0 commit comments

Comments
 (0)