mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Update common/src/test/java/bisq/common/util/PermutationTest.java
Co-Authored-By: ManfredKarrer <mk@nucleo.io>
This commit is contained in:
parent
ada67fa8e7
commit
5f0e64f173
1 changed files with 1 additions and 1 deletions
|
@ -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()));
|
||||
|
|
Loading…
Add table
Reference in a new issue