From e3bd328b0f8cacea06cb94dfa63996144279df52 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 31 Jul 2017 13:28:14 -0400 Subject: [PATCH] Removed a primary key value dependency in a multiple_database test. Follow up to a51c4de1945be2225f20fad794cfb52d8f1f9236. --- tests/multiple_database/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/multiple_database/tests.py b/tests/multiple_database/tests.py index 8c4e8a8d8c..50859a3dc6 100644 --- a/tests/multiple_database/tests.py +++ b/tests/multiple_database/tests.py @@ -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 "": 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