summaryrefslogtreecommitdiff
path: root/tests/unit/utils/test_qtutils.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-12-15 19:08:15 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-12-15 19:16:55 +0100
commite65c0dd8a7ed5c1955361ff8336036422b954d3f (patch)
tree7de209641292e43d36bb40aba7fde814392af815 /tests/unit/utils/test_qtutils.py
parent93cd200bb71f53d4dbbba14a239bf01776bf850e (diff)
downloadqutebrowser-e65c0dd8a7ed5c1955361ff8336036422b954d3f.tar.gz
qutebrowser-e65c0dd8a7ed5c1955361ff8336036422b954d3f.zip
pylint: Re-enable bad-continuation
And lots and lots of whitespace changes.
Diffstat (limited to 'tests/unit/utils/test_qtutils.py')
-rw-r--r--tests/unit/utils/test_qtutils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/utils/test_qtutils.py b/tests/unit/utils/test_qtutils.py
index d580d677a..b817eeed0 100644
--- a/tests/unit/utils/test_qtutils.py
+++ b/tests/unit/utils/test_qtutils.py
@@ -17,6 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
+
"""Tests for qutebrowser.utils.qtutils."""
import io
@@ -40,6 +41,7 @@ from qutebrowser.utils import qtutils, utils
import overflow_test_cases
+# pylint: disable=bad-continuation
@pytest.mark.parametrize(['qversion', 'compiled', 'pyqt', 'version', 'exact',
'expected'], [
# equal versions
@@ -61,6 +63,7 @@ import overflow_test_cases
# all up-to-date
('5.4.0', '5.4.0', '5.4.0', '5.4.0', False, True),
])
+# pylint: enable=bad-continuation
def test_version_check(monkeypatch, qversion, compiled, pyqt, version, exact,
expected):
"""Test for version_check().