diff options
author | 2024-07-15 15:29:20 +0100 | |
---|---|---|
committer | 2024-07-15 15:29:42 +0100 | |
commit | 52cf22d160c4588abede07940fd8c77d4a500d68 (patch) | |
tree | ebe2034603d760f4410a84eb0236548cc77106da /gui-editors/gui-editor-apex/src/test | |
parent | 1d4d45c33cd74a7c33a9262fbceb059e08eb0ae8 (diff) |
Issue-ID: POLICY-5074
Change-Id: I1632f156d594d6eb9880ecb96875e3e19e4e93cb
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'gui-editors/gui-editor-apex/src/test')
-rw-r--r-- | gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java b/gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java index 9adb889..8fdf192 100644 --- a/gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java +++ b/gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java @@ -126,7 +126,7 @@ class RestInterfaceTest { assertTrue(responseMsg.isOk()); // The string in responseMsg.Messages[0] is a JSON representation of a AxPolicy - // object. Lets parse it + // object. Let's parse it final String returnedPolicyAsString = responseMsg.getMessages().get(0); ApexModelReader<AxPolicy> apexPolicyReader = new ApexModelReader<>(AxPolicy.class, false); final AxPolicy returnedPolicy = apexPolicyReader.read(returnedPolicyAsString); |