diff options
author | liamfallon <liam.fallon@est.tech> | 2019-12-10 13:57:32 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-12-10 13:57:37 +0000 |
commit | 5a366fdab88b7205cedd2ba687109b80dc374544 (patch) | |
tree | 26a98347ddfe39c2c20fad20a487014c1a0f2263 /models-interactions/model-impl/rest/src/test | |
parent | db85df62efbf70597d9f7e965f68b77f4ddc1f1f (diff) |
Fix minor checksyle issues in models
New checkstyle profile flagged some minor issues in policy models.
Issue-ID: POLICY-2165
Change-Id: I17ed070a3d55601ad31e48fdfd29fff01d29fa42
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-interactions/model-impl/rest/src/test')
-rw-r--r-- | models-interactions/model-impl/rest/src/test/java/org/onap/policy/rest/HttpDeleteWithBodyTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models-interactions/model-impl/rest/src/test/java/org/onap/policy/rest/HttpDeleteWithBodyTest.java b/models-interactions/model-impl/rest/src/test/java/org/onap/policy/rest/HttpDeleteWithBodyTest.java index cfdc859b1..8579bf1bd 100644 --- a/models-interactions/model-impl/rest/src/test/java/org/onap/policy/rest/HttpDeleteWithBodyTest.java +++ b/models-interactions/model-impl/rest/src/test/java/org/onap/policy/rest/HttpDeleteWithBodyTest.java @@ -30,7 +30,7 @@ public class HttpDeleteWithBodyTest { private static final String NO_URI = "BlahBlah"; @Test - public void getMethod() { + public void testGetMethod() { HttpDeleteWithBody deleteWithBody = new HttpDeleteWithBody(NO_URI); assertEquals("DELETE", deleteWithBody.getMethod()); assertEquals(NO_URI, deleteWithBody.getURI().toString()); |