Skip to content

Commit 9cb1be6

Browse files
committed
Altered Concept exercise to test no important files changed fix.
1 parent c8b3a39 commit 9cb1be6

File tree

3 files changed

+3
-27
lines changed

3 files changed

+3
-27
lines changed

exercises/concept/cater-waiter/sets_categories_data.py

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
# pylint: disable-all
22
# flake8: noqa,
3-
VEGAN = {
4-
'chives', 'nutritional yeast', 'tomato', 'orange zest', 'pareve puff pastry', 'cashews', 'tofu',
5-
'rice vinegar', 'black pepper', 'cardamom powder', 'mustard seeds', 'parev shortcrust pastry',
6-
'scallions', 'water', 'chinese eggplants', 'lemon juice', 'smoked paprika', 'cloves', 'basmati rice',
7-
'cayenne pepper', 'green onions', 'sunflower oil', 'mixed herbs', 'garlic paste', 'parsley',
8-
'fresh red chili', 'flour', 'garlic', 'oregano', 'green beans', 'harissa', 'brandy', 'fresh basil',
9-
'coriander', 'vinegar', 'thyme', 'coriander seeds', 'clove powder', 'pomegranate seeds',
10-
'sugar', 'yukon gold potato', 'sesame oil', 'cinnamon powder', 'butternut squash', 'allspice powder',
11-
'red pepper flakes', 'soy sauce', 'sesame seeds', 'cornstarch', 'mango powder', 'vegetable stock',
12-
'raisins', 'barley malt', 'olive oil', 'ground almonds', 'white rice', 'garlic powder', 'walnuts',
13-
'saffron powder', 'red chili powder', 'turmeric powder', 'spring onions', 'yeast', 'khmeli suneli',
14-
'peanuts', 'bulgur', 'cilantro', 'onion', 'calabash nutmeg', 'black-eyed peas', 'grains of selim',
15-
'zucchini', 'currants', 'spaghetti', 'figs', 'red bell pepper', 'lemon zest', 'ground turmeric',
16-
'chili flakes', 'chickpea flour', 'hing', 'slivered almonds', 'vegetable oil', 'serrano chili',
17-
'salt', 'yellow onions', 'salt', 'coriander powder', 'orange zest', 'garam masala', 'yellow onion',
18-
'smoked tofu', 'bell pepper', 'apples', 'brown sugar', 'coconut oil', 'orange juice',
19-
'sorghum stems', 'dried blueberries', 'tomato paste', 'curry leaves', 'vegetarian worcestershire sauce',
20-
'hot water', 'fresh ginger', 'firm tofu', 'eggplants', 'bell pepper', 'siracha', 'carrot', 'nigella seeds',
21-
'vegan butter', "za'atar", 'baking soda', 'brown sugar', 'dried cranberries', 'kosher salt', 'mangoes',
22-
'vegan unsweetened yoghurt', 'black peppercorn', 'vinegar', 'dill', 'barberries', 'honey', 'tomatoes',
23-
'yellow split peas', 'persian cucumber', 'turmeric', 'lemon', 'cumin', 'oil', 'mushrooms', 'spring onion',
24-
'pomegranate concentrate', 'cumin seeds', 'balsamic vinegar', 'ripe plantains', 'celeriac', 'breadcrumbs',
25-
'ginger', 'dried cherries', 'red onion', 'rosemary', 'chopped parsley', 'corn', 'cumin powder', 'pecans',
26-
'silken tofu', 'pomegranate molasses', 'carrot', 'corn flour', 'mashed potatoes'
27-
}
3+
284

295

306
VEGETARIAN = {

exercises/concept/cater-waiter/sets_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_singleton_ingredients(self):
112112

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

117117
error_message = ("Expected only ingredients that belong to exactly "
118118
"one dish, but got multi-dish ingredients instead.")

exercises/concept/cater-waiter/sets_test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
# Data for test_categorize_dish #
210210
#################################
211211

212-
all_dishes = recipes_without_duplicates
212+
all_dishes = recipes_without_duplicate
213213

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

0 commit comments

Comments
 (0)