Skip to content

Commit 35442b6

Browse files
chore: fix typo
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent e5c7cca commit 35442b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algorithms/graphs/recipes_supplies/test_find_all_possible_recipes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ class FindAllPossibleRecipesTestCase(unittest.TestCase):
5656
@parameterized.expand(FIND_ALL_POSSIBLE_RECIPES_TEST_CASES)
5757
def test_find_recipes(
5858
self,
59-
recipies: List[str],
59+
recipes: List[str],
6060
ingredients: List[List[str]],
6161
supplies: List[str],
6262
expected: List[str],
6363
):
64-
actual = find_recipes(recipies, ingredients, supplies)
64+
actual = find_recipes(recipes, ingredients, supplies)
6565
self.assertEqual(expected, actual)
6666

6767

0 commit comments

Comments
 (0)