From 1a70889d5837982a111bca0280ea6ca782c6de6b Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Wed, 7 Jan 2026 16:20:36 -0500 Subject: Refs #36769 -- Corrected invalid XML fixtures. fixture9.xml was likely wrong since its introduction in 35cc439228cd32dfa7a3ec919db01a8a5cd17d33. The relevant part of the Visa model is: class Visa(models.Model): person = models.ForeignKey(Person, models.CASCADE) The Visa.person s needed to be declared as relations, and the Person s didn't need their values wrapped in ``, since they weren't relations. --- tests/fixtures/fixtures/fixture9.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/fixtures/fixtures/fixture9.xml b/tests/fixtures/fixtures/fixture9.xml index 100f63d106..51003093f3 100644 --- a/tests/fixtures/fixtures/fixture9.xml +++ b/tests/fixtures/fixtures/fixture9.xml @@ -1,7 +1,7 @@ - + Stephane Grappelli @@ -19,11 +19,11 @@ - Artist formerly known as "Prince" + Artist formerly known as "Prince" - + Artist formerly known as "Prince" -- cgit v1.3