jira issue, Use assertThat(actual).contains(expected) instead. 48/129948/1
authorGanesh <ganesh.c@samsung.com>
Fri, 15 Jul 2022 09:37:14 +0000 (15:07 +0530)
committerGanesh <ganesh.c@samsung.com>
Fri, 15 Jul 2022 09:37:22 +0000 (15:07 +0530)
Signed-off-by: Ganesh <ganesh.c@samsung.com>
Change-Id: I7c485cab044b3b9ade9afc688f2ef67c92ec6ff6
Issue-ID: Issue-ID: SO-3966

adapters/mso-catalog-db-adapter/src/test/java/org/onap/so/adapters/catalogdb/catalogrest/QueryServiceArtifactTest.java
adapters/mso-catalog-db-adapter/src/test/java/org/onap/so/adapters/catalogdb/catalogrest/QueryServiceInfoTest.java

index 2266eaf..d7852cf 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP - SO
  * ================================================================================
  * Copyright (c) 2019, CMCC Technologies Co., Ltd.
+ * Copyright (c) 2022, Samsung Electronics. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -35,7 +36,7 @@ public class QueryServiceArtifactTest {
         QueryServiceArtifact queryServiceArtifact = new QueryServiceArtifact(createList());
         String jsonResult = queryServiceArtifact.JSON2(true, false);
         Assertions.assertThat(JsonPathUtil.getInstance().locateResult(jsonResult, "$.serviceArtifact[0].name").get())
-                .isEqualTo("eMBB.zip");
+                .contains("eMBB.zip");
     }
 
     private List<ServiceArtifact> createList() {
index e948141..37fd464 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP - SO
  * ================================================================================
  * Copyright (c) 2019, CMCC Technologies Co., Ltd.
+ * Copyright (c) 2022, Samsung Electronics. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -35,7 +36,7 @@ public class QueryServiceInfoTest {
         QueryServiceInfo queryServiceInfo = new QueryServiceInfo(createList());
         String jsonResult = queryServiceInfo.JSON2(true, false);
         String serviceInfo = jsonResult.substring(jsonResult.indexOf("{"), jsonResult.length());
-        Assertions.assertThat(JsonPathUtil.getInstance().locateResult(serviceInfo, "$.id").get()).isEqualTo("1");
+        Assertions.assertThat(JsonPathUtil.getInstance().locateResult(serviceInfo, "$.id").get()).contains("1");
     }
 
     private List<ServiceInfo> createList() {