Skip to content

Commit 33fcafe

Browse files
committed
Format test_highlighter.py using black
1 parent 2dd2daa commit 33fcafe

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/test_highlighter.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,14 @@ def test_wrong_type():
134134
(" http://example.org ", [Span(1, 19, "repr.url")]),
135135
(" http://example.org/index.html ", [Span(1, 30, "repr.url")]),
136136
(" http://example.org/index.html#anchor ", [Span(1, 37, "repr.url")]),
137-
(" http://example.org/index.html?param1=value1 ", [Span(31, 37, 'repr.attrib_name'), Span(38, 44, 'repr.attrib_value'), Span(1, 44, "repr.url")]),
137+
(
138+
" http://example.org/index.html?param1=value1 ",
139+
[
140+
Span(31, 37, "repr.attrib_name"),
141+
Span(38, 44, "repr.attrib_value"),
142+
Span(1, 44, "repr.url"),
143+
],
144+
),
138145
(" http://example.org/~folder ", [Span(1, 27, "repr.url")]),
139146
("No place like 127.0.0.1", [Span(14, 23, "repr.ipv4")]),
140147
("''", [Span(0, 2, "repr.str")]),

0 commit comments

Comments
 (0)