diff options
author | Ben David, Elad (eb7504) <eb7504@intl.att.com> | 2020-03-23 18:05:27 +0200 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-03-25 13:00:46 +0000 |
commit | cb10a6cc9f65ef69c3c8a29a9ea3312adfe814e4 (patch) | |
tree | e369855b4c0cada8507126f57a47a3adb52fab5a /test-apis-ci/src | |
parent | a7e2351ac2700bc62584d8f16057c1efa1f64400 (diff) |
Fix to CSIT failure due to EP type
Change-Id: I6a2bcd4b43490898952fa1a5ea171ece015d376c
Issue-ID: SDC-2820
Signed-off-by: Ben David, Elad (eb7504) <eb7504@intl.att.com>
Diffstat (limited to 'test-apis-ci/src')
-rw-r--r-- | test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/general/VendorLicenseModelRestUtils.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/general/VendorLicenseModelRestUtils.java b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/general/VendorLicenseModelRestUtils.java index 7955b95239..72f8fc1a01 100644 --- a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/general/VendorLicenseModelRestUtils.java +++ b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/general/VendorLicenseModelRestUtils.java @@ -254,6 +254,7 @@ public class VendorLicenseModelRestUtils { JSONObject jObjectBody = new JSONObject(); jObjectBody.put("name", "def"+ OnboardingUtils.getShortUUID()); jObjectBody.put("description", "new vendor license entitlement pool"); + jObjectBody.put("type", "Universal"); jObjectBody.put("thresholdValue", "23"); jObjectBody.put("thresholdUnits", "Absolute"); jObjectBody.put("entitlementMetric", jEntitlementMetricObject); |