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

Skip to content

Patch issue 6035 rebase #6504

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 30, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make __prepare_fancyarrow_dpi_cor_test private to prevent nose from r…
…unning it
  • Loading branch information
jenshnielsen committed May 30, 2016
commit d6eee04f9f67b02ee0fa2018c52c20c361f914e7
6 changes: 3 additions & 3 deletions lib/matplotlib/tests/test_arrow_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_boxarrow():
bbox=dict(boxstyle=stylename, fc="w", ec="k"))


def prepare_fancyarrow_dpi_cor_test():
def __prepare_fancyarrow_dpi_cor_test():
"""
Convenience function that prepares and returns a FancyArrowPatch. It aims
at being used to test that the size of the arrow head does not depend on
Expand Down Expand Up @@ -82,7 +82,7 @@ def test_fancyarrow_dpi_cor_100dpi():
Remark: test only a rasterized format.
"""

prepare_fancyarrow_dpi_cor_test()
__prepare_fancyarrow_dpi_cor_test()


@image_comparison(baseline_images=['fancyarrow_dpi_cor_200dpi'],
Expand All @@ -94,7 +94,7 @@ def test_fancyarrow_dpi_cor_200dpi():
of the arrow head should be the same.
"""

prepare_fancyarrow_dpi_cor_test()
__prepare_fancyarrow_dpi_cor_test()


if __name__ == '__main__':
Expand Down