plot_utils: teach pre_plot_setup() setup multirow plots
diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py
index b44c276..6b2ac8e 100644
--- a/tests/test_plot_utils.py
+++ b/tests/test_plot_utils.py
@@ -69,6 +69,11 @@
axis = plot_utils.pre_plot_setup(ncols=2)
self.assertEquals(len(axis), 2)
+ axis = plot_utils.pre_plot_setup(nrows=2, ncols=3)
+ self.assertEquals(len(axis), 2)
+ self.assertEquals(len(axis[0]), 3)
+ self.assertEquals(len(axis[1]), 3)
+
def test_post_plot_setup(self):
"""Test that post_plot_setup() doesn't bomb"""