From 7a52d36fc22d0a528c9a35b593cf1b71fbd046ef Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Mon, 12 Feb 2018 18:22:27 +0000 Subject: [PATCH] Fixed mpl table unit test --- tests/testrenderclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testrenderclass.py b/tests/testrenderclass.py index 18c6f2460b..9c5f7331ce 100644 --- a/tests/testrenderclass.py +++ b/tests/testrenderclass.py @@ -96,7 +96,7 @@ def test_get_size_tables_in_layout(self): table = Table(range(10), kdims=['x']) plot = self.renderer.get_plot(table+table) w, h = self.renderer.get_size(plot) - self.assertEqual((w, h), (576, 230)) + self.assertEqual((w, h), (576, 233)) @attr(optional=1) class BokehRendererTest(ComparisonTestCase):