summaryrefslogtreecommitdiff
path: root/tests/test_strings.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-01-27 15:54:47 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-01-27 15:54:47 +0100
commitdd5e979d43e1c6938a344e013e04eb4477c9f165 (patch)
tree72ec5026c6a6930865034e4d11647ef4a5869261 /tests/test_strings.py
parent4a6a2b7b7facd5bcbf8b9e137d0047a170c5e8d4 (diff)
downloadrsa-git-dd5e979d43e1c6938a344e013e04eb4477c9f165.tar.gz
Simplified test structure a bit, so we no longer need to set PYTHONPATH
The u'' string prefix was reintroduced in Python 3.3, and since we've dropped py3.2 support we can avoid the whole py{2k,3k}constants.py mess.
Diffstat (limited to 'tests/test_strings.py')
-rw-r--r--tests/test_strings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_strings.py b/tests/test_strings.py
index 541b317..2b9a1d1 100644
--- a/tests/test_strings.py
+++ b/tests/test_strings.py
@@ -22,7 +22,7 @@ import unittest
import rsa
-from constants import unicode_string
+unicode_string = u"Euro=\u20ac ABCDEFGHIJKLMNOPQRSTUVWXYZ"
class StringTest(unittest.TestCase):