Removed a primary key value dependency in a multiple_database test.

Follow up to a51c4de194.
This commit is contained in:
Tim Graham 2017-07-31 13:28:14 -04:00
parent aadd3aeb2b
commit e3bd328b0f
1 changed files with 2 additions and 2 deletions

View File

@ -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