Skip to content

Commit

Permalink
Extend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker authored and geier committed Apr 18, 2017
1 parent 0f408d8 commit 805f59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icalendar/tests/test_icalendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def test_q_split(self):
def test_q_split_bin(self):
from ..parser import q_split
for s in ('X-SOMETHING=ABCDE==', ',,,'):
for maxsplit in range(3):
for maxsplit in range(-1, 3):
self.assertEqual(q_split(s, '=', maxsplit=maxsplit),
s.split('=', maxsplit))

Expand Down

0 comments on commit 805f59d

Please sign in to comment.