File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
internal-api/src/main/java/datadog/trace/api/civisibility/config Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11package datadog .trace .api .civisibility .config ;
22
33import datadog .trace .util .HashingUtils ;
4+ import datadog .trace .util .Strings ;
45import java .util .Objects ;
56import javax .annotation .Nullable ;
67
@@ -17,12 +18,12 @@ public class TestIdentifier {
1718
1819 public TestIdentifier (String suite , String name , @ Nullable String parameters ) {
1920 this .fqn = new TestFQN (suite , name );
20- this .parameters = parameters ;
21+ this .parameters = Strings . isNotBlank ( parameters ) ? parameters : null ;
2122 }
2223
2324 public TestIdentifier (TestFQN testFQN , @ Nullable String parameters ) {
2425 this .fqn = testFQN ;
25- this .parameters = parameters ;
26+ this .parameters = Strings . isNotBlank ( parameters ) ? parameters : null ;
2627 }
2728
2829 public String getSuite () {
You can’t perform that action at this time.
0 commit comments