mirror of https://github.com/django/django.git
Removed a primary key value dependency in a multiple_database test.
Follow up to a51c4de194
.
This commit is contained in:
parent
aadd3aeb2b
commit
e3bd328b0f
|
@ -672,8 +672,8 @@ class QueryTestCase(TestCase):
|
|||
# Set a one-to-one relation with an object from a different database
|
||||
alice_profile = UserProfile.objects.using('default').create(user=alice, flavor='chocolate')
|
||||
msg = (
|
||||
'Cannot assign "<UserProfile: UserProfile object (1)>": the '
|
||||
'current database router prevents this relation.'
|
||||
'Cannot assign "%r": the current database router prevents this '
|
||||
'relation.' % alice_profile
|
||||
)
|
||||
with self.assertRaisesMessage(ValueError, msg):
|
||||
bob.userprofile = alice_profile
|
||||
|
|
Loading…
Reference in New Issue