From ef42c319e9596ec37bf9a0554665de71627b7765 Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Tue, 22 Apr 2014 16:24:16 -0700 Subject: [PATCH] Updating yet another string for python3. --- django_mailbox/tests/test_process_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_mailbox/tests/test_process_email.py b/django_mailbox/tests/test_process_email.py index 77b89ba..d3f15bc 100644 --- a/django_mailbox/tests/test_process_email.py +++ b/django_mailbox/tests/test_process_email.py @@ -191,7 +191,7 @@ class TestProcessEmail(EmailMessageTestCase): actual_subject = msg.subject self.assertEqual(actual_subject, expected_subject) - expected_from = u'test test' + expected_from = six.u('test test') actual_from = msg.from_header self.assertEqual(expected_from, actual_from)