mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 10:08:20 +00:00
fmt
This commit is contained in:
parent
13a120530e
commit
c3432e1cc3
1 changed files with 4 additions and 1 deletions
|
@ -5787,7 +5787,10 @@ mod tests {
|
|||
.duration_since(std::time::UNIX_EPOCH)
|
||||
.unwrap()
|
||||
.as_secs(),
|
||||
|v| v.parse().expect("Failed to parse SEED environment variable as u64"),
|
||||
|v| {
|
||||
v.parse()
|
||||
.expect("Failed to parse SEED environment variable as u64")
|
||||
},
|
||||
);
|
||||
let rng = ChaCha8Rng::seed_from_u64(seed);
|
||||
(rng, seed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue