diff options
author | HelenaLydon <helena.lydon@est.tech> | 2019-08-22 15:53:27 +0000 |
---|---|---|
committer | HelenaLydon <helena.lydon@est.tech> | 2019-08-22 15:53:27 +0000 |
commit | 8280a5e1a6cfd155edfafe882439b8c04c6a4509 (patch) | |
tree | 241b046a34ceb0e936f867334db01454998fccb6 /datarouter-prov/src/test | |
parent | 1c11dffada48c31491f2583f0d28ccecb4b4891b (diff) |
DMAAP-1195 [DR] Remove DR code smells
Issue-ID: DMAAP-1195
Change-Id: I7c6117aa55d281fd0562c845a812107f9eb9581d
Signed-off-by: HelenaLydon <helena.lydon@est.tech>
Diffstat (limited to 'datarouter-prov/src/test')
-rw-r--r-- | datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/beans/FeedTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/beans/FeedTest.java b/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/beans/FeedTest.java index 9db43223..37e69c84 100644 --- a/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/beans/FeedTest.java +++ b/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/beans/FeedTest.java @@ -161,7 +161,7 @@ public class FeedTest { feed.setVersion("v1.0"); feed.setGroupid(1); feed.setDescription("test feed"); - feed.setBusiness_description("test feed"); + feed.setBusinessDescription("test feed"); feed.setSuspended(false); feed.setPublisher("publish"); @@ -169,7 +169,7 @@ public class FeedTest { Assert.assertEquals(feed.getVersion(), "v1.0"); Assert.assertEquals(feed.getGroupid(), 1); Assert.assertEquals(feed.getDescription(), "test feed"); - Assert.assertEquals(feed.getBusiness_description(), "test feed"); + Assert.assertEquals(feed.getBusinessDescription(), "test feed"); Assert.assertEquals(feed.isSuspended(), false); Assert.assertEquals(feed.getPublisher(), "publish"); } |