From a582de200156b72e3b4ead7f6d2e817739486c15 Mon Sep 17 00:00:00 2001 From: mtredinnick Date: Tue, 26 Aug 2008 20:51:45 +0000 Subject: [PATCH] Cleaned up some tests I broke as a result of the escapejs changes in [8577]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8599 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/defaultfilters/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/regressiontests/defaultfilters/tests.py b/tests/regressiontests/defaultfilters/tests.py index 42e9bcae..9e360fc0 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'