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:51:20 +01:00 committed by GitHub
parent 32ebb07c48
commit 4ae98b5709
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ public class PermutationTest {
assertTrue(expected.toString().equals(result.toString()));
// remove first
indicesToRemove = indicesToRemove = Collections.singletonList(0);
indicesToRemove = Collections.singletonList(0);
expected = new ArrayList<>(list);
expected.remove(0);
result = PermutationUtil.getPartialList(list, indicesToRemove);