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 9b04f25 commit 78c4619Copy full SHA for 78c4619
lib/matplotlib/tests/test_axes.py
@@ -1552,6 +1552,7 @@ def test_bar_pandas_indexed(pd):
1552
1553
1554
@check_figures_equal()
1555
+@pytest.mark.style('default')
1556
def test_bar_hatches(fig_test, fig_ref):
1557
ax_test = fig_test.subplots()
1558
ax_ref = fig_ref.subplots()
@@ -1560,7 +1561,7 @@ def test_bar_hatches(fig_test, fig_ref):
1560
1561
y = [2, 3]
1562
hatches = ['x', 'o']
1563
for i in range(2):
- ax_ref.bar(x[i], y[i], color='blue', hatch=hatches[i])
1564
+ ax_ref.bar(x[i], y[i], color='C0', hatch=hatches[i])
1565
1566
ax_test.bar(x, y, hatch=hatches)
1567
0 commit comments