From: Ole Streicher <olebole@debian.org>
Date: Mon, 23 Jan 2017 12:19:52 +0100
Subject: Allow matplotlib to return an rgba tuple instead of a color name in
 test.

This is required to have the test succeeding on matplotlib 2.0.

Closes: #849368
---
 seaborn/tests/test_axisgrid.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seaborn/tests/test_axisgrid.py b/seaborn/tests/test_axisgrid.py
index 3f1dc5d..e93d275 100644
--- a/seaborn/tests/test_axisgrid.py
+++ b/seaborn/tests/test_axisgrid.py
@@ -269,7 +269,7 @@ class TestFacetGrid(PlotTestCase):
 
         g = ag.FacetGrid(self.df, subplot_kws=dict(axisbg="blue"))
         for ax in g.axes.flat:
-            nt.assert_equal(ax.get_axis_bgcolor(), "blue")
+            nt.assert_in(ax.get_axis_bgcolor(), ("blue", (0.0, 0.0, 1.0, 1.0)))
 
     @skipif(old_matplotlib)
     def test_gridspec_kws(self):
