File: drop-TestUnicodeDocString.patch

package info (click to toggle)
python-parameterized 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 380 kB
  • sloc: python: 921; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 476 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/parameterized/test.py
+++ b/parameterized/test.py
@@ -662,15 +662,6 @@
         ))
 
 
-class TestUnicodeDocstring(object):
-    @parameterized.expand([
-        'value1',
-        'vålüé¡'
-    ])
-    def test_with_docstring(self, param):
-        """ Это док-стринг, содержащий не-ascii символы """
-        pass
-
 if sys.version_info.major == 3 and sys.version_info.minor >= 8:
     from unittest import IsolatedAsyncioTestCase