Skip to content

Commit 04195fe

Browse files
committed
fix test
1 parent 775b706 commit 04195fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/simdvec/src/test/java/org/elasticsearch/simdvec/internal/vectorization/ES92Int7VectorScorerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public boolean hasNativeAccess() {
3131
var jdkVersion = Runtime.version().feature();
3232
var arch = System.getProperty("os.arch");
3333
var osName = System.getProperty("os.name");
34-
return (jdkVersion >= 21
34+
return (jdkVersion >= 22
3535
&& (arch.equals("aarch64") && (osName.startsWith("Mac") || osName.equals("Linux"))
3636
|| arch.equals("amd64") && osName.equals("Linux")));
3737
}

0 commit comments

Comments
 (0)