File: Remove-unicode-docstring-test.patch

package info (click to toggle)
python-parameterized 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 284 kB
  • sloc: python: 735; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 720 bytes parent folder | download
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"""