summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/tests/test_display.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlint-core/gitlint/tests/test_display.py')
-rw-r--r--gitlint-core/gitlint/tests/test_display.py22
1 files changed, 10 insertions, 12 deletions
diff --git a/gitlint-core/gitlint/tests/test_display.py b/gitlint-core/gitlint/tests/test_display.py
index 167ef96..1f759d2 100644
--- a/gitlint-core/gitlint/tests/test_display.py
+++ b/gitlint-core/gitlint/tests/test_display.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-
from io import StringIO
from unittest.mock import patch # pylint: disable=no-name-in-module, import-error
@@ -14,9 +12,9 @@ class DisplayTests(BaseTestCase):
display = Display(LintConfig())
display.config.verbosity = 2
- with patch('gitlint.display.stderr', new=StringIO()) as stderr:
+ with patch("gitlint.display.stderr", new=StringIO()) as stderr:
# Non exact outputting, should output both v and vv output
- with patch('gitlint.display.stdout', new=StringIO()) as stdout:
+ with patch("gitlint.display.stdout", new=StringIO()) as stdout:
display.v("tëst")
display.vv("tëst2")
# vvvv should be ignored regardless
@@ -25,7 +23,7 @@ class DisplayTests(BaseTestCase):
self.assertEqual("tëst\ntëst2\n", stdout.getvalue())
# exact outputting, should only output v
- with patch('gitlint.display.stdout', new=StringIO()) as stdout:
+ with patch("gitlint.display.stdout", new=StringIO()) as stdout:
display.v("tëst", exact=True)
display.vv("tëst2", exact=True)
# vvvv should be ignored regardless
@@ -33,16 +31,16 @@ class DisplayTests(BaseTestCase):
display.vvv("tëst3.2", exact=True)
self.assertEqual("tëst2\n", stdout.getvalue())
- # standard error should be empty throughtout all of this
- self.assertEqual('', stderr.getvalue())
+ # standard error should be empty throughout all of this
+ self.assertEqual("", stderr.getvalue())
def test_e(self):
display = Display(LintConfig())
display.config.verbosity = 2
- with patch('gitlint.display.stdout', new=StringIO()) as stdout:
+ with patch("gitlint.display.stdout", new=StringIO()) as stdout:
# Non exact outputting, should output both v and vv output
- with patch('gitlint.display.stderr', new=StringIO()) as stderr:
+ with patch("gitlint.display.stderr", new=StringIO()) as stderr:
display.e("tëst")
display.ee("tëst2")
# vvvv should be ignored regardless
@@ -51,7 +49,7 @@ class DisplayTests(BaseTestCase):
self.assertEqual("tëst\ntëst2\n", stderr.getvalue())
# exact outputting, should only output v
- with patch('gitlint.display.stderr', new=StringIO()) as stderr:
+ with patch("gitlint.display.stderr", new=StringIO()) as stderr:
display.e("tëst", exact=True)
display.ee("tëst2", exact=True)
# vvvv should be ignored regardless
@@ -59,5 +57,5 @@ class DisplayTests(BaseTestCase):
display.eee("tëst3.2", exact=True)
self.assertEqual("tëst2\n", stderr.getvalue())
- # standard output should be empty throughtout all of this
- self.assertEqual('', stdout.getvalue())
+ # standard output should be empty throughout all of this
+ self.assertEqual("", stdout.getvalue())