Skip to content

Commit

Permalink
Fix timing issues with tests
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Hollensbe <git@hollensbe.org>
  • Loading branch information
erikh committed Feb 23, 2022
1 parent 79492b1 commit 693920d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
17 changes: 15 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ mod sixplane {
init_logger();
let service = Service::new(
ServiceConfig::default()
.update_interval(Some(Duration::new(2, 0)))
.update_interval(Some(Duration::new(5, 0)))
.network_filename("6plane-only")
.wildcard_everything(true),
)
Expand Down Expand Up @@ -327,7 +327,7 @@ mod rfc4193 {
init_logger();
let service = Service::new(
ServiceConfig::default()
.update_interval(Some(Duration::new(2, 0)))
.update_interval(Some(Duration::new(5, 0)))
.network_filename("rfc4193-only")
.wildcard_everything(true),
)
Expand Down Expand Up @@ -387,7 +387,7 @@ mod ipv4 {
init_logger();
let service = Service::new(
ServiceConfig::default()
.update_interval(Some(Duration::new(2, 0)))
.update_interval(Some(Duration::new(5, 0)))
.wildcard_everything(true),
)
.await;
Expand Down

0 comments on commit 693920d

Please sign in to comment.