Skip to content

Commit

Permalink
Update random seed
Browse files Browse the repository at this point in the history
  • Loading branch information
ajantha-bhat committed Jan 10, 2025
1 parent a1a1c40 commit 2f4d8df
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
public class TestInternalAvro extends AvroDataTest {
@Override
protected void writeAndValidate(Schema schema) throws IOException {
List<StructLike> expected =
RandomInternalData.generate(schema, 100, System.currentTimeMillis());
List<StructLike> expected = RandomInternalData.generate(schema, 100, 42L);

OutputFile outputFile = new InMemoryOutputFile();

Expand Down

0 comments on commit 2f4d8df

Please sign in to comment.