Limit generated seed to < 100,000

This commit is contained in:
Michael Miller 2021-05-16 20:39:35 -06:00
parent 1525317e2c
commit b970abd334
No known key found for this signature in database
GPG key ID: FB9F12F7C646A4AD

View file

@ -11,7 +11,7 @@ module Spectator
# Then call `#build` to create the final configuration.
class Builder
# Seed used for random number generation.
property random_seed : UInt64 = Random.rand(UInt64)
property random_seed : UInt64 = Random.rand(100000_u64)
# Toggles indicating how the test spec should execute.
property run_flags = RunFlags::None