From b8ad04bbe7561d5b11bb0f7f4b4c2f88d2ba29b9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 7 Aug 2014 07:56:59 +0200 Subject: [PATCH] test_conftypes: Fix lint. --- qutebrowser/test/config/test_conftypes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/test/config/test_conftypes.py b/qutebrowser/test/config/test_conftypes.py index 7e8ebdab8..fa1593754 100644 --- a/qutebrowser/test/config/test_conftypes.py +++ b/qutebrowser/test/config/test_conftypes.py @@ -1091,7 +1091,8 @@ class FontTests(unittest.TestCase): 'italic 10pt "Foobar Neue"': FontDesc(QFont.StyleItalic, QFont.Normal, 10, None, 'Foobar Neue'), 'oblique 10pt "Foobar Neue"': - FontDesc(QFont.StyleOblique, QFont.Normal, 10, None, 'Foobar Neue'), + FontDesc(QFont.StyleOblique, QFont.Normal, 10, None, + 'Foobar Neue'), 'normal bold 10pt "Foobar Neue"': FontDesc(QFont.StyleNormal, QFont.Bold, 10, None, 'Foobar Neue'), 'bold italic 10pt "Foobar Neue"':