Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6ac01bd

Browse files
committed
tests directory format converted
1 parent 6155084 commit 6ac01bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/matplotlib/tests/test_coding_standards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def assert_pep8_conformance(module=matplotlib, exclude_files=None,
152152
raise ValueError('Some exclude patterns were unnecessary as the '
153153
'files they pointed to either passed the PEP8 '
154154
'tests or do not point to a file:\n '
155-
'{}'.format('\n '.join(unexpectedly_good)))
155+
'{0}'.format('\n '.join(unexpectedly_good)))
156156

157157

158158
def test_pep8_conformance_installed_files():

lib/matplotlib/tests/test_patheffects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_PathEffect_points_to_pixels():
9797

9898
assert isinstance(pe_renderer, path_effects.PathEffectRenderer), (
9999
'Expected a PathEffectRendere instance, got '
100-
'a {} instance.'.format(type(pe_renderer)))
100+
'a {0} instance.'.format(type(pe_renderer)))
101101

102102
# Confirm that using a path effects renderer maintains point sizes
103103
# appropriately. Otherwise rendered font would be the wrong size.

0 commit comments

Comments
 (0)