File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/test/java/org/springframework/data/map Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1818import static org .assertj .core .api .Assertions .*;
1919
2020import java .util .AbstractMap ;
21+ import java .util .LinkedHashMap ;
2122import java .util .Map ;
2223
2324import org .junit .jupiter .api .BeforeEach ;
2425import org .junit .jupiter .api .Test ;
2526import org .springframework .data .util .CloseableIterator ;
2627
2728/**
29+ * Unit tests for {@link MapKeyValueAdapter}.
30+ *
2831 * @author Christoph Strobl
32+ * @author Mark Paluch
2933 */
3034class MapKeyValueAdapterUnitTests {
3135
@@ -40,7 +44,7 @@ class MapKeyValueAdapterUnitTests {
4044
4145 @ BeforeEach
4246 void setUp () {
43- this .adapter = new MapKeyValueAdapter ();
47+ this .adapter = new MapKeyValueAdapter (LinkedHashMap . class );
4448 }
4549
4650 @ Test // DATACMNS-525
You can’t perform that action at this time.
0 commit comments