Skip to content

Commit

Permalink
Merge pull request #6124 from clebergnu/class_dependencies_recipe_tes…
Browse files Browse the repository at this point in the history
…t_fixes

Class dependencies: recipe test fixes
  • Loading branch information
richtja authored Feb 19, 2025
2 parents f986a03 + b35b0fd commit f2a65ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions selftests/functional/serial/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ def test_c(self):
"""

DEPENDENCY_RECIPE_FMT = """
{
{{
"kind": "avocado-instrumented",
"uri": "{path}",
"kwargs": {"dependencies": [{"type": "package", "name": "hello"}]}
}
"kwargs": {{"dependencies": [{{"type": "package", "name": "hello"}}]}}
}}
"""


Expand Down Expand Up @@ -320,7 +320,7 @@ def test_dependency_recipe(self):
result = process.run(command, ignore_status=True)
self.assertEqual(result.exit_status, exit_codes.AVOCADO_ALL_OK)
self.assertIn(
"PASS 3",
"PASS 1",
result.stdout_text,
)
self.assertNotIn(
Expand Down

0 comments on commit f2a65ec

Please sign in to comment.