1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

feat: Recipe Finder (aka Cocktail Builder) (#4542)

This commit is contained in:
Michael Genson 2024-12-03 07:27:41 -06:00 committed by GitHub
parent d26e29d1c5
commit 4e0cf985bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 1959 additions and 151 deletions

View file

@ -634,7 +634,8 @@ def test_pagination_order_by_multiple(unique_user: TestUser, order_direction: Or
random.shuffle(abbreviations)
random.shuffle(descriptions)
assert abbreviations != descriptions
while abbreviations == descriptions:
random.shuffle(descriptions)
units_to_create: list[SaveIngredientUnit] = []
for abbreviation in abbreviations:
@ -694,7 +695,8 @@ def test_pagination_order_by_multiple_directions(
random.shuffle(abbreviations)
random.shuffle(descriptions)
assert abbreviations != descriptions
while abbreviations == descriptions:
random.shuffle(descriptions)
units_to_create: list[SaveIngredientUnit] = []
for abbreviation in abbreviations: