From 57fe1fce37d778e8de88aefb7e1b0784777e2bbd Mon Sep 17 00:00:00 2001 From: gitterjim-I Date: Wed, 5 Apr 2017 20:40:09 +0100 Subject: [PATCH] Change test names once more (#1596) * article Bael-667 initial commit. * Switch to use logging framework for output. * Make code more concise. Refactor as suggested. * modify test method names --- .../list/flattennestedlist/FlattenNestedListTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-java/src/test/java/com/baeldung/list/flattennestedlist/FlattenNestedListTest.java b/core-java/src/test/java/com/baeldung/list/flattennestedlist/FlattenNestedListTest.java index 285b217156..93962e7831 100644 --- a/core-java/src/test/java/com/baeldung/list/flattennestedlist/FlattenNestedListTest.java +++ b/core-java/src/test/java/com/baeldung/list/flattennestedlist/FlattenNestedListTest.java @@ -17,7 +17,7 @@ public class FlattenNestedListTest { List> lol = asList(asList("one:one"), asList("two:one", "two:two", "two:three"), asList("three:one", "three:two", "three:three", "three:four")); @Test - public void givenNestedList_thenFlattenNestedListImperative() { + public void givenNestedList_thenFlattenImperatively() { List ls = flattenListOfListsImperatively(lol); assertNotNull(ls); @@ -27,7 +27,7 @@ public class FlattenNestedListTest { } @Test - public void givenNestedList_thenFlattenNestedListStream() { + public void givenNestedList_thenFlattenFunctionally() { List ls = flattenListOfListsStream(lol); assertNotNull(ls);