From 0e9587fd6b180d0a752ae77d3adb5e7966cb65b4 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 22 Jul 2008 05:15:40 +0000 Subject: [PATCH] Fixed the tests from [8033] to work for the PostgreSQL backends (the primary key value isn't guaranteed to be the same across all backends). Still some breakage on MySQL because of the way it treats booleans, but that's another issue. Refs #6755. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8051 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../model_inheritance_regress/models.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/tests/regressiontests/model_inheritance_regress/models.py b/tests/regressiontests/model_inheritance_regress/models.py index 3f4fa04b77..0a812cf5ed 100644 --- a/tests/regressiontests/model_inheritance_regress/models.py +++ b/tests/regressiontests/model_inheritance_regress/models.py @@ -162,16 +162,14 @@ DoesNotExist: ItalianRestaurant matching query does not exist. # Regression test for #6755 >>> r = Restaurant(serves_pizza=False) >>> r.save() ->>> r.id -3 ->>> r.place_ptr_id -3 ->>> r = Restaurant(place_ptr_id=3, serves_pizza=True) +>>> r.id == r.place_ptr_id +True +>>> orig_id = r.id +>>> r = Restaurant(place_ptr_id=orig_id, serves_pizza=True) >>> r.save() ->>> r.id -3 ->>> r.place_ptr_id -3 - +>>> r.id == orig_id +True +>>> r.id == r.place_ptr_id +True """}