From 651aa53452425e09cb568240f608134399c9608a Mon Sep 17 00:00:00 2001 From: ramoj Date: Fri, 26 Jul 2024 01:21:41 +0000 Subject: [PATCH] Docstring updates --- tests/cli/main_tool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cli/main_tool.py b/tests/cli/main_tool.py index f81aaaf2f..17851f16a 100644 --- a/tests/cli/main_tool.py +++ b/tests/cli/main_tool.py @@ -108,7 +108,7 @@ def testRecipeSetupArgs(self, recipe_name): self._testRecipeSetupArgs(recipe_name) def _testRecipeSetupArgs(self, recipe_name): - """Checks that all recipes pass the correct arguments to their modules.""" + """Checks that a recipes passes the correct arguments to their modules.""" # We want to access the tool's state object to load recipes and go through # modules. # pylint: disable=protected-access @@ -137,7 +137,7 @@ def testRecipeValidators(self, recipe_name): self._testRecipeValidators(recipe_name) def _testRecipeValidators(self, recipe_name): - """Tests that recipes do not specify invalid validators.""" + """Tests that a recipe does not specify invalid validators.""" # pylint: disable=protected-access self.tool._state = dftw_state.DFTimewolfState(config.Config) recipe = self.tool._recipes_manager.Recipes()[recipe_name]