Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0546715 + 9d49793 commit c16d8f5Copy full SHA for c16d8f5
1 file changed
lib/matplotlib/testing/decorators.py
@@ -232,7 +232,13 @@ def test(self):
232
shutil.copyfile(orig_expected_fname, expected_fname)
233
else:
234
will_fail = True
235
- fail_msg = 'Do not have baseline image %s' % expected_fname
+ fail_msg = (
236
+ "Do not have baseline image {0} because this "
237
+ "file does not exist: {1}".format(
238
+ expected_fname,
239
+ orig_expected_fname
240
+ )
241
242
243
@knownfailureif(
244
will_fail, fail_msg,
0 commit comments