Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/infra/scanner_binary_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -233,7 +233,7 @@ mod tests {
.await
.unwrap()
.to_string(),
"1.22.4"
"1.22.6"
);
}

Expand All @@ -256,7 +256,7 @@ mod tests {
.await
.unwrap()
.to_string(),
"1.22.4"
"1.22.6"
);
}
}