File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
vavr/src/test/java/io/vavr/collection Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ public void shouldSerializeDeserializeEnumBitSet() {
462
462
@ Test
463
463
public void shouldBehaveExactlyLikeAnotherBitSet () {
464
464
for (int i = 0 ; i < 10 ; i ++) {
465
- final Random random = getRandom ( 123456789 );
465
+ final Random random = new Random ( );
466
466
467
467
final java .util .BitSet mutableBitSet = new java .util .BitSet ();
468
468
BitSet <Integer > functionalBitSet = BitSet .empty ();
Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ public void shouldKeepInstanceOfPriorityQueue() {
285
285
@ Test
286
286
public void shouldBehaveExactlyLikeAnotherPriorityQueue () {
287
287
for (int i = 0 ; i < 10 ; i ++) {
288
- final Random random = getRandom ( 987654321 );
288
+ final Random random = new Random ( );
289
289
290
290
final java .util .PriorityQueue <Integer > mutablePriorityQueue = new java .util .PriorityQueue <>();
291
291
PriorityQueue <Integer > functionalPriorityQueue = PriorityQueue .empty ();
You can’t perform that action at this time.
0 commit comments