Skip to content

Commit

Permalink
Altered Concept exercise to test no important files changed fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
BethanyG committed Jan 11, 2025
1 parent c8b3a39 commit 9cb1be6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
26 changes: 1 addition & 25 deletions exercises/concept/cater-waiter/sets_categories_data.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,6 @@
# pylint: disable-all
# flake8: noqa,
VEGAN = {
'chives', 'nutritional yeast', 'tomato', 'orange zest', 'pareve puff pastry', 'cashews', 'tofu',
'rice vinegar', 'black pepper', 'cardamom powder', 'mustard seeds', 'parev shortcrust pastry',
'scallions', 'water', 'chinese eggplants', 'lemon juice', 'smoked paprika', 'cloves', 'basmati rice',
'cayenne pepper', 'green onions', 'sunflower oil', 'mixed herbs', 'garlic paste', 'parsley',
'fresh red chili', 'flour', 'garlic', 'oregano', 'green beans', 'harissa', 'brandy', 'fresh basil',
'coriander', 'vinegar', 'thyme', 'coriander seeds', 'clove powder', 'pomegranate seeds',
'sugar', 'yukon gold potato', 'sesame oil', 'cinnamon powder', 'butternut squash', 'allspice powder',
'red pepper flakes', 'soy sauce', 'sesame seeds', 'cornstarch', 'mango powder', 'vegetable stock',
'raisins', 'barley malt', 'olive oil', 'ground almonds', 'white rice', 'garlic powder', 'walnuts',
'saffron powder', 'red chili powder', 'turmeric powder', 'spring onions', 'yeast', 'khmeli suneli',
'peanuts', 'bulgur', 'cilantro', 'onion', 'calabash nutmeg', 'black-eyed peas', 'grains of selim',
'zucchini', 'currants', 'spaghetti', 'figs', 'red bell pepper', 'lemon zest', 'ground turmeric',
'chili flakes', 'chickpea flour', 'hing', 'slivered almonds', 'vegetable oil', 'serrano chili',
'salt', 'yellow onions', 'salt', 'coriander powder', 'orange zest', 'garam masala', 'yellow onion',
'smoked tofu', 'bell pepper', 'apples', 'brown sugar', 'coconut oil', 'orange juice',
'sorghum stems', 'dried blueberries', 'tomato paste', 'curry leaves', 'vegetarian worcestershire sauce',
'hot water', 'fresh ginger', 'firm tofu', 'eggplants', 'bell pepper', 'siracha', 'carrot', 'nigella seeds',
'vegan butter', "za'atar", 'baking soda', 'brown sugar', 'dried cranberries', 'kosher salt', 'mangoes',
'vegan unsweetened yoghurt', 'black peppercorn', 'vinegar', 'dill', 'barberries', 'honey', 'tomatoes',
'yellow split peas', 'persian cucumber', 'turmeric', 'lemon', 'cumin', 'oil', 'mushrooms', 'spring onion',
'pomegranate concentrate', 'cumin seeds', 'balsamic vinegar', 'ripe plantains', 'celeriac', 'breadcrumbs',
'ginger', 'dried cherries', 'red onion', 'rosemary', 'chopped parsley', 'corn', 'cumin powder', 'pecans',
'silken tofu', 'pomegranate molasses', 'carrot', 'corn flour', 'mashed potatoes'
}



VEGETARIAN = {
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/cater-waiter/sets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_singleton_ingredients(self):

for variant, (item, result) in enumerate(test_data, start=1):
with self.subTest(f"variation #{variant}", inputs="overlapping ingredients",
results="ingredients in only one dish"):
results="ingredients in only the dish"):

error_message = ("Expected only ingredients that belong to exactly "
"one dish, but got multi-dish ingredients instead.")
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/cater-waiter/sets_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
# Data for test_categorize_dish #
#################################

all_dishes = recipes_without_duplicates
all_dishes = recipes_without_duplicate

dishes_categorized = ['Zucchini Fritters with Lemon-Thyme Coconut Yogurt: PALEO',
'Winter Cobb Salad: VEGETARIAN',
Expand Down

0 comments on commit 9cb1be6

Please sign in to comment.