We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2749b commit da36a7bCopy full SHA for da36a7b
crates/openvino/tests/util.rs
@@ -91,5 +91,5 @@ pub fn is_version_pre_2024_2() -> bool {
91
let mut parts = version.parts();
92
let year: usize = parts.next().unwrap().parse().unwrap();
93
let minor: usize = parts.next().unwrap().parse().unwrap();
94
- year <= 2024 && minor < 2
+ year <= 2024 || (year == 2024 && minor < 2)
95
}
0 commit comments