Fixed get_or_create...test_savepoint_rollback test for Python3

The test was always skipped on Python3 because string literals are unicode
This commit is contained in:
Shai Berger 2013-05-26 01:53:24 +03:00
parent cf159e5c93
commit 36d47f72e3
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class GetOrCreateTests(TestCase):
warnings.simplefilter('ignore')
Person.objects.get_or_create(
birthday=date(1970, 1, 1),
defaults={'first_name': "\xff", 'last_name': "\xff"})
defaults={'first_name': b"\xff", 'last_name': b"\xff"})
except (DatabaseError, DjangoUnicodeDecodeError):
Person.objects.create(
first_name="Bob", last_name="Ross", birthday=date(1950, 1, 1))