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 0978492 commit 9135a03
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 9135a03

Please sign in to comment.