summaryrefslogtreecommitdiffstats
path: root/gitlint/tests/test_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlint/tests/test_options.py')
-rw-r--r--gitlint/tests/test_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlint/tests/test_options.py b/gitlint/tests/test_options.py
index fc3ccc1..eabcfe1 100644
--- a/gitlint/tests/test_options.py
+++ b/gitlint/tests/test_options.py
@@ -197,7 +197,7 @@ class RuleOptionTests(BaseTestCase):
self.assertEqual(option.value, self.get_sample_path())
# Expect exception if path type is invalid
- option.type = u'föo'
+ option.type = 'föo'
expected = "Option tëst-directory type must be one of: 'file', 'dir', 'both' (current: 'föo')"
with self.assertRaisesMessage(RuleOptionError, expected):
option.set("haha")