diff --git a/tests/regressiontests/defaultfilters/tests.py b/tests/regressiontests/defaultfilters/tests.py index 42e9bcaeb3..9e360fc061 100644 --- a/tests/regressiontests/defaultfilters/tests.py +++ b/tests/regressiontests/defaultfilters/tests.py @@ -50,16 +50,16 @@ u'\\\\ : backslashes, too' u'Hello world' >>> escapejs(u'"double quotes" and \'single quotes\'') -u'\\"double quotes\\" and \\\'single quotes\\\'' +u'\\x22double quotes\\x22 and \\x27single quotes\\x27' >>> escapejs(ur'\ : backslashes, too') -u'\\\\ : backslashes, too' +u'\\x5C : backslashes, too' >>> escapejs(u'and lots of whitespace: \r\n\t\v\f\b') -u'and lots of whitespace: \\r\\n\\t\\v\\f\\b' +u'and lots of whitespace: \\x0D\\x0A\\x09\\x0B\\x0C\\x08' >>> escapejs(ur'') -u'