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() {
462462 @ Test
463463 public void shouldBehaveExactlyLikeAnotherBitSet () {
464464 for (int i = 0 ; i < 10 ; i ++) {
465- final Random random = getRandom ( 123456789 );
465+ final Random random = new Random ( );
466466
467467 final java .util .BitSet mutableBitSet = new java .util .BitSet ();
468468 BitSet <Integer > functionalBitSet = BitSet .empty ();
Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ public void shouldKeepInstanceOfPriorityQueue() {
285285 @ Test
286286 public void shouldBehaveExactlyLikeAnotherPriorityQueue () {
287287 for (int i = 0 ; i < 10 ; i ++) {
288- final Random random = getRandom ( 987654321 );
288+ final Random random = new Random ( );
289289
290290 final java .util .PriorityQueue <Integer > mutablePriorityQueue = new java .util .PriorityQueue <>();
291291 PriorityQueue <Integer > functionalPriorityQueue = PriorityQueue .empty ();
You can’t perform that action at this time.
0 commit comments