1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ghislain Antony Vaillant <ghisvail@gmail.com>
Date: Sat, 21 Oct 2017 21:44:47 +0100
Subject: Remove unicode docstring test
Bug: https://github.com/wolever/parameterized/issues/44
---
parameterized/test.py | 5 -----
1 file changed, 5 deletions(-)
--- a/parameterized/test.py
+++ b/parameterized/test.py
@@ -272,11 +272,6 @@
" More" %(foo, )
)
- @parameterized.expand([param("foo")])
- def test_unicode_docstring(self, foo):
- u"""Döcumentation."""
- self._assert_docstring(u"Döcumentation [with foo=%r]." %(foo, ))
-
@parameterized.expand([param("foo", )])
def test_default_values_get_correct_value(self, foo, bar=12):
"""Documentation"""
|