summaryrefslogtreecommitdiff
path: root/tests/test_traversal.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_traversal.py')
-rw-r--r--tests/test_traversal.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_traversal.py b/tests/test_traversal.py
index 8521844b0..61e480cbc 100644
--- a/tests/test_traversal.py
+++ b/tests/test_traversal.py
@@ -1226,7 +1226,8 @@ class Test__join_path_tuple(unittest.TestCase):
def test_segments_with_unsafes(self):
safe_segments = tuple(
- u"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=:@"
+ u"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
+ u"-._~!$&'()*+,;=:@"
)
result = self._callFUT(safe_segments)
self.assertEqual(result, u'/'.join(safe_segments))