Update common/src/test/java/bisq/common/util/PermutationTest.java

Co-Authored-By: ManfredKarrer <mk@nucleo.io>
This commit is contained in:
sqrrm 2019-02-03 20:52:18 +01:00 committed by GitHub
parent ada67fa8e7
commit 5f0e64f173
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ public class PermutationTest {
assertTrue(expected.toString().equals(result.toString()));
// remove all
indicesToRemove = indicesToRemove = Arrays.asList(0, 1, 2, 3, 4, 5);
indicesToRemove = Arrays.asList(0, 1, 2, 3, 4, 5);
expected = new ArrayList<>();
result = PermutationUtil.getPartialList(list, indicesToRemove);
assertTrue(expected.toString().equals(result.toString()));