aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java
diff options
context:
space:
mode:
authorKrishnajinka <kris.jinka@samsung.com>2018-07-30 13:18:06 +0900
committerKrishnajinka <kris.jinka@samsung.com>2018-07-31 10:47:24 +0900
commit023280727ac52e777b4128d726e212c9e8abd435 (patch)
treea85f1af023929cc9ae0076dea5c5d2da2cd5d568 /ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java
parent1ecf9de8c889adb2dbc9ddd9a79d28e1da89d87b (diff)
Convert tabs to spaces basic refactoring
Change tabs into spaces for checkstyle fixes in ONAP REST module of policy engine. These changes come in way for review. Hence doing them before refactoring is better. Issue-ID: POLICY-1014 Change-Id: I31a372ae527946927157bc23b576f3066679b0ae Signed-off-by: Krishnajinka <kris.jinka@samsung.com>
Diffstat (limited to 'ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java')
-rw-r--r--ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java b/ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java
index eb4784e29..b40b81778 100644
--- a/ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java
+++ b/ONAP-REST/src/test/java/org/onap/policy/rest/adapter/AutoPushTabAdapterTest.java
@@ -27,12 +27,12 @@ import org.junit.Test;
public class AutoPushTabAdapterTest {
- @Test
- public void testAutoPushTabAdapter(){
- AutoPushTabAdapter adapter = new AutoPushTabAdapter();
- adapter.setPdpDatas(new ArrayList<>());
- assertTrue(adapter.getPdpDatas() != null);
- adapter.setPolicyDatas(new ArrayList<>());
- assertTrue(adapter.getPolicyDatas() != null);
- }
+ @Test
+ public void testAutoPushTabAdapter(){
+ AutoPushTabAdapter adapter = new AutoPushTabAdapter();
+ adapter.setPdpDatas(new ArrayList<>());
+ assertTrue(adapter.getPdpDatas() != null);
+ adapter.setPolicyDatas(new ArrayList<>());
+ assertTrue(adapter.getPolicyDatas() != null);
+ }
}