Skip to content

Commit

Permalink
Corrected ReportNameProvider so that links to requirement summaries a…
Browse files Browse the repository at this point in the history
…re compatible with those generated for requirements tags
  • Loading branch information
jan-molak committed Jan 3, 2024
1 parent 929bb5a commit 71bf9c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private String prefixUsing(Optional<String> context) {
}

public String forRequirement(Requirement requirement) {
return reportNamer.getNormalizedReportNameFor(prefixUsing(context) + "requirement_" + requirement.getPath());
return reportNamer.getNormalizedReportNameFor(prefixUsing(context) + requirement.getType() + "_" + requirement.getPath());
}

public String forRequirement(TestTag tag) {
Expand Down

0 comments on commit 71bf9c8

Please sign in to comment.