diff options
author | liamfallon <liam.fallon@est.tech> | 2018-12-19 19:11:01 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2018-12-20 13:28:37 +0000 |
commit | 9013b63b082dcc3c7e6a10b52976bcc46ca3f019 (patch) | |
tree | f7e7ae7f4c05b5f7221f43b4f5e862d9fb36f5c4 /reception/src/test/java/org/onap | |
parent | 5654548387d1ba2c3776d1a01276103481ac41cd (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>
Diffstat (limited to 'reception/src/test/java/org/onap')
-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()); } |