From 54350fd9faf7e237ffefb04046ca30bb5fd42030 Mon Sep 17 00:00:00 2001 From: qins Date: Sun, 25 Sep 2016 16:42:36 +0800 Subject: [PATCH] Solve #309 with flake8 constrain --- pygal/test/test_line_log_none_max_solved.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pygal/test/test_line_log_none_max_solved.py b/pygal/test/test_line_log_none_max_solved.py index 1f7f9e2..41e72f8 100644 --- a/pygal/test/test_line_log_none_max_solved.py +++ b/pygal/test/test_line_log_none_max_solved.py @@ -5,11 +5,9 @@ from __future__ import division from pygal import Line -from pygal.test.utils import texts -from math import cos, sin chart = Line(title='test', logarithmic=True) chart.add('test 1', [None, -38, 48, 4422, 35586, 1003452, 225533]) chart.add('test 2', [1, 40, 20, 38, 2937, 20399, 3947]) q = chart.render_pyquery() -assert len(q(".dots")) == 20 +assert len(q(".dots")) == 12