Skip to content

Commit 8caeea8

Browse files
committed
Formatting
1 parent 1ec1a3f commit 8caeea8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/tests/test_dviread.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,10 @@ def test_dviread_get_fonts():
8989

9090
def test_dviread_get_fonts_error_handling():
9191
dir = os.path.join(os.path.dirname(__file__), 'baseline_images', 'dviread')
92-
for n, message in [(1, "too few 223 bytes"), (2, "post-postamble identification"),
93-
(3, "postamble offset"), (4, "postamble not found"),
92+
for n, message in [(1, "too few 223 bytes"),
93+
(2, "post-postamble identification"),
94+
(3, "postamble offset"),
95+
(4, "postamble not found"),
9496
(5, "opcode 127 in postamble")]:
9597
with pytest.raises(ValueError) as e:
9698
dr.Dvi(os.path.join(dir, "broken%d.dvi" % n), None)

0 commit comments

Comments
 (0)