Closed
Description
Describe the feature
Tag description attribute does not apply properties values
To Reproduce
In unit test
Add the following property
test=This is a test message
Run unit test App14
And look at the produced json.
Expected behavior
With the following properties
greeting=Hello! Welcome to our website!
test=This is a test message
And the following tag
@Tag(name = "greeting", description = "test")
I would expect it to product
"name":"Hello! Welcome to our website!","description":"This is a test message"
But it produced
"name":"Hello! Welcome to our website!","description":"test"