diff --git a/src/infra/scanner_binary_manager.rs b/src/infra/scanner_binary_manager.rs index 3d77790..625a588 100644 --- a/src/infra/scanner_binary_manager.rs +++ b/src/infra/scanner_binary_manager.rs @@ -40,7 +40,7 @@ pub(super) struct ScannerBinaryManager {} impl ScannerBinaryManager { const fn version(&self) -> Version { - Version::new(1, 22, 4) + Version::new(1, 22, 6) } pub async fn install_expected_version_if_not_present( @@ -193,7 +193,7 @@ mod tests { async fn it_gets_the_wanted_version() { let mgr = ScannerBinaryManager::default(); - assert_eq!(mgr.version().to_string(), "1.22.4"); + assert_eq!(mgr.version().to_string(), "1.22.6"); } #[tokio::test] @@ -233,7 +233,7 @@ mod tests { .await .unwrap() .to_string(), - "1.22.4" + "1.22.6" ); } @@ -256,7 +256,7 @@ mod tests { .await .unwrap() .to_string(), - "1.22.4" + "1.22.6" ); } }