Skip to content

Commit 26dcc6b

Browse files
committed
Fix typo in tests
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 87684e4 commit 26dcc6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_do_format.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def md_mock() -> Iterator[mock.MagicMock]:
3131

3232
_SOURCE = """\
3333
1. This is some text
34-
2. which have multiple lines
34+
2. which has multiple lines
3535
3. and we want to filter some of them
3636
4. we number them
3737
5. so we can see which ones are filtered
@@ -100,7 +100,7 @@ class _TestCase:
100100
options=Options(show_lines=LinesRanges({LinesRange(end=3)})),
101101
expected_src="""\
102102
1. This is some text
103-
2. which have multiple lines
103+
2. which has multiple lines
104104
3. and we want to filter some of them
105105
""",
106106
),
@@ -109,7 +109,7 @@ class _TestCase:
109109
title="Open range with start and end in the middle",
110110
options=Options(show_lines=LinesRanges({LinesRange(start=2, end=4)})),
111111
expected_src="""\
112-
2. which have multiple lines
112+
2. which has multiple lines
113113
3. and we want to filter some of them
114114
4. we number them
115115
""",
@@ -144,7 +144,7 @@ class _TestCase:
144144
),
145145
expected_src="""\
146146
1. This is some text
147-
2. which have multiple lines
147+
2. which has multiple lines
148148
4. we number them
149149
5. so we can see which ones are filtered
150150
6. and which ones are not

0 commit comments

Comments
 (0)