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.
1 parent dd19976 commit ff470cfCopy full SHA for ff470cf
1 file changed
lib/matplotlib/tests/test_axes.py
@@ -8903,8 +8903,11 @@ def test_axhvlinespan_interpolation():
8903
@check_figures_equal(extensions=["png"])
8904
@pytest.mark.parametrize("which", ("x", "y"))
8905
def test_axes_clear_behavior(fig_ref, fig_test, which):
8906
+ """Test that the given tick params are not reset by ax.clear()."""
8907
ax_test = fig_test.subplots()
8908
ax_ref = fig_ref.subplots()
8909
+ # the following tick params values are chosen to each create a visual difference
8910
+ # from their defaults
8911
target = {
8912
"direction": "in",
8913
"length": 10,
0 commit comments