Skip to content

Commit

Permalink
feat(consume): format id as code
Browse files Browse the repository at this point in the history
  • Loading branch information
danceratopz committed Jun 4, 2024
1 parent efc6cd3 commit cffb871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytest_plugins/consume/simulator_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def fixture_description(fixture: Fixture, test_case: TestCase) -> str:
"""
Return the description of the current test case.
"""
description = f"Test id: {test_case.id}"
description = f"Test id: <code>{test_case.id}</code>"
if "url" in fixture.info:
description += f"\n\nTest source: {fixture.info['url']}"
if "description" not in fixture.info:
Expand Down

0 comments on commit cffb871

Please sign in to comment.