From b7b1d304bf503b9ee9a085bab866c0cf5eaaa60e Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Wed, 2 Jan 2013 13:15:34 +0100 Subject: [PATCH] Fix one test --- pygal/test/test_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygal/test/test_graph.py b/pygal/test/test_graph.py index e0de73c..f217ae5 100644 --- a/pygal/test/test_graph.py +++ b/pygal/test/test_graph.py @@ -64,7 +64,7 @@ def test_render_to_png(Chart, datas): def test_metadata(Chart): chart = Chart() - v = range(7) + v = range(1, 8) if Chart == pygal.XY: v = map(lambda x: (x, x + 1), v)