Fix get_or_create test failure under Oracle

Test expected that when given invalid utf-8, the backend should raise
a DatabaseError, but the Oracle backend raises a UnicodeDecodeError.
This commit is contained in:
Shai Berger 2013-05-26 01:39:34 +03:00
parent 31f6421b13
commit cf159e5c93
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import traceback
import warnings
from django.db import IntegrityError, DatabaseError
from django.utils.encoding import DjangoUnicodeDecodeError
from django.test import TestCase, TransactionTestCase
from .models import Person, ManualPrimaryKeyTest, Profile, Tag, Thing
@ -76,7 +77,7 @@ class GetOrCreateTests(TestCase):
Person.objects.get_or_create(
birthday=date(1970, 1, 1),
defaults={'first_name': "\xff", 'last_name': "\xff"})
except DatabaseError:
except (DatabaseError, DjangoUnicodeDecodeError):
Person.objects.create(
first_name="Bob", last_name="Ross", birthday=date(1950, 1, 1))
else: