diff options
author | liamfallon <liam.fallon@est.tech> | 2018-12-19 19:11:01 +0000 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2019-01-10 09:51:16 +0000 |
commit | 64a7a90abe64b132222e66900377f138c9df2cb1 (patch) | |
tree | d68768da4dcf3f85b12ffd03eee40c7475e65823 /reception/src | |
parent | 2511b36968b84151c67d7227c043bf90855ce161 (diff) |
Fix checkstyle issues in distribution
Some fixes for minor checkstyle issues.
Issue-ID: POLICY-1221
Change-Id: I86577f47283a6fa97be25d7550ed9c2d7ec026a9
Signed-off-by: liamfallon <liam.fallon@est.tech>
(cherry picked from commit 9013b63b082dcc3c7e6a10b52976bcc46ca3f019)
Diffstat (limited to 'reception/src')
-rw-r--r-- | reception/src/test/java/org/onap/policy/distribution/reception/decoding/PluginTerminationExceptionTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/reception/src/test/java/org/onap/policy/distribution/reception/decoding/PluginTerminationExceptionTest.java b/reception/src/test/java/org/onap/policy/distribution/reception/decoding/PluginTerminationExceptionTest.java index b450e32b..c2fc6a94 100644 --- a/reception/src/test/java/org/onap/policy/distribution/reception/decoding/PluginTerminationExceptionTest.java +++ b/reception/src/test/java/org/onap/policy/distribution/reception/decoding/PluginTerminationExceptionTest.java @@ -25,7 +25,7 @@ import static org.junit.Assert.assertEquals; import org.junit.Test; /** - * Class to perform unit test of {@link PluginTerminationException} + * Class to perform unit test of {@link PluginTerminationException}. * * @author Ram Krishna Verma (ram.krishna.verma@ericsson.com) */ @@ -40,8 +40,8 @@ public class PluginTerminationExceptionTest { @Test public void testPluginTerminationExceptionStringThrowable() { final Exception cause = new IllegalArgumentException(); - final PluginTerminationException pluginTerminationException = - new PluginTerminationException("error message", cause); + final PluginTerminationException pluginTerminationException = new PluginTerminationException("error message", + cause); assertEquals("error message", pluginTerminationException.getMessage()); assertEquals(cause, pluginTerminationException.getCause()); } |