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
|
# Set a one-to-one relation with an object from a different database
|
||||||
alice_profile = UserProfile.objects.using('default').create(user=alice, flavor='chocolate')
|
alice_profile = UserProfile.objects.using('default').create(user=alice, flavor='chocolate')
|
||||||
msg = (
|
msg = (
|
||||||
'Cannot assign "<UserProfile: UserProfile object (1)>": the '
|
'Cannot assign "%r": the current database router prevents this '
|
||||||
'current database router prevents this relation.'
|
'relation.' % alice_profile
|
||||||
)
|
)
|
||||||
with self.assertRaisesMessage(ValueError, msg):
|
with self.assertRaisesMessage(ValueError, msg):
|
||||||
bob.userprofile = alice_profile
|
bob.userprofile = alice_profile
|
||||||
|
|
Loading…
Reference in New Issue