We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Link.Issue and Link.Tms factory methods set the url field of the newly created Link to null leading to an invalid link being rendered.
Link.Issue
Link.Tms
url
Given the "https://my-host/{issue}" pattern and the following link:
"https://my-host/{issue}"
AllureLifecycle.Instance.UpdateTestCase(t => t.links.Add(Link.Issue("ISSUE-1")));
The link is rendered with the "https://my-host/" URL instead of the "https://my-host/ISSUE-1"
"https://my-host/"
"https://my-host/ISSUE-1"
Both factory methods should create a Link with both name and url set to the same provided value.
The text was updated successfully, but these errors were encountered:
delatrie
Successfully merging a pull request may close this issue.
I'm submitting a ...
What is the current behavior?
The
Link.Issue
andLink.Tms
factory methods set theurl
field of the newly created Link to null leading to an invalid link being rendered.If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
Given the
"https://my-host/{issue}"
pattern and the following link:The link is rendered with the
"https://my-host/"
URL instead of the"https://my-host/ISSUE-1"
What is the expected behavior?
Both factory methods should create a Link with both name and url set to the same provided value.
The text was updated successfully, but these errors were encountered: