diff options
| author | mat <git@matdoes.dev> | 2023-10-03 01:36:07 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-10-03 01:36:07 -0500 |
| commit | 86d96071b3d3e0c461ad54d1f0029e8942789440 (patch) | |
| tree | 58ddd35bb308ce8ccf66186b055d4a46b5736090 /azalea/src/pathfinder/simulation.rs | |
| parent | e9c5231336b95c0d2e93c96279b8cac036b45527 (diff) | |
| download | azalea-drasl-86d96071b3d3e0c461ad54d1f0029e8942789440.tar.xz | |
upgrade deps and make test not flaky
the test just always fails now, this needs to be fixed but at least it's easier to fix now
Diffstat (limited to 'azalea/src/pathfinder/simulation.rs')
| -rw-r--r-- | azalea/src/pathfinder/simulation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/simulation.rs b/azalea/src/pathfinder/simulation.rs index 565e3e92..2b1bfd42 100644 --- a/azalea/src/pathfinder/simulation.rs +++ b/azalea/src/pathfinder/simulation.rs @@ -68,7 +68,7 @@ impl Simulation { azalea_client::task_pool::TaskPoolPlugin::default(), )) // make sure it doesn't do fixed ticks without us telling it to - .insert_resource(FixedTime::new(Duration::from_secs(60))) + .insert_resource(FixedTime::new(Duration::MAX)) .insert_resource(InstanceContainer { instances: [(instance_name.clone(), Arc::downgrade(&instance.clone()))] .iter() |
