diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-01-10 10:45:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-10 10:45:55 +0000 |
commit | 6766ca671937871dcbc56d3c7a7df2385a34dfb4 (patch) | |
tree | 2a2a7c63cddbb60055c8c4d2008b1acda29d2563 /reception | |
parent | 4108a0b918749ee6d13e8476552ee471c92a0a6d (diff) | |
parent | 64a7a90abe64b132222e66900377f138c9df2cb1 (diff) |
Merge "Fix checkstyle issues in distribution" into casablanca
Diffstat (limited to 'reception')
-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()); } |