chore: Remove temporary pin on pydantic (#5911)
* chore: Remove temporary pin on pydantic * test: Guarantee ordering of sessions in test Should fix an intermittent test failure.
This commit is contained in:
parent
60dc60234d
commit
09f347727b
|
@ -146,7 +146,7 @@ class SessionRequestTestCase(TestCase):
|
|||
self.assertRedirects(r, redirect_url)
|
||||
|
||||
# Check whether updates were stored in the database
|
||||
sessions = Session.objects.filter(meeting=meeting, group=mars)
|
||||
sessions = Session.objects.filter(meeting=meeting, group=mars).order_by("id") # order to match edit() view
|
||||
self.assertEqual(len(sessions), 2)
|
||||
session = sessions[0]
|
||||
|
||||
|
|
|
@ -72,4 +72,3 @@ Unidecode>=1.3.4
|
|||
weasyprint>=59
|
||||
xml2rfc>=3.12.4
|
||||
xym>=0.6,<1.0
|
||||
pydantic<2 # Temporary pin until inflect can catch up.
|
||||
|
|
Loading…
Reference in a new issue