diff options
| author | Tomaz Solc <tomaz.solc@tablix.org> | 2015-05-14 15:46:46 +0200 |
|---|---|---|
| committer | Tomaz Solc <tomaz.solc@tablix.org> | 2015-05-14 15:46:46 +0200 |
| commit | 1b8c39212feaf558d10870504df62f9b8cdc8e9a (patch) | |
| tree | 37539c6aaf7a092b051b2f941b74ee7d4a54030f /tests/test_unidecode.py | |
| parent | bce06fe0812c0dc717b09f772548e850f008c107 (diff) | |
| download | unidecode-1b8c39212feaf558d10870504df62f9b8cdc8e9a.tar.gz | |
skip test_unicode_text_converter on narrow builds
Diffstat (limited to 'tests/test_unidecode.py')
| -rw-r--r-- | tests/test_unidecode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_unidecode.py b/tests/test_unidecode.py index bc04f8a..7f43172 100644 --- a/tests/test_unidecode.py +++ b/tests/test_unidecode.py @@ -459,6 +459,7 @@ class TestUnidecode(unittest.TestCase): self.assertEqual(correct_output, output) + @unittest.skipIf(sys.maxunicode < 0x10000, "narrow build") def test_unicode_text_converter(self): # Examples from http://www.panix.com/~eli/unicode/convert.cgi lower = [ |
