Fix ordering of fixtures.
Review Request #12059 — Created Feb. 12, 2022 and submitted — Latest diff uploaded
I had updated things to always add the
test_users
fixture when using
thetest_site
fixture due to foreign key relations that were causing
integrity errors. It turns out that the order of those is
important--while including both fixtures fixed the integrity error, the
relations weren't being properly populated. A few tests were relying on
this, so we need to switch which one comes first.
Ran unit tests.