Skip to content

Commit 6aa1d3f

Browse files
committed
Fixes from code review
1 parent e964292 commit 6aa1d3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/org/neo4j/driver/internal/connector/socket/BufferingChunkedInputFuzzTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void shouldHandleAllMessageBoundaries() throws IOException
5555
public void messageSizeFuzzTest() throws IOException
5656
{
5757
int maxSize = 1 << 16;
58-
Random random = new Random(11);
58+
Random random = new Random();
5959
for ( int i = 0; i < 1000; i++)
6060
{
6161
int size = random.nextInt( maxSize + 1);

0 commit comments

Comments
 (0)