Skip to content

Commit 2c6173e

Browse files
committed
Fix loading ForeignLinkerBLAS in tests
1 parent edc07ca commit 2c6173e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blas/src/test/java/dev/ludovic/netlib/blas/BLASTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private static Stream<Arguments> BLASImplementations() throws Throwable {
6767
}
6868
if (major >= 17) {
6969
instances = Stream.concat(instances, Stream.of(
70-
Arguments.of((NativeBLAS)Class.forName("ForeignLinkerBLAS").getMethod("getInstance").invoke(null))
70+
Arguments.of((NativeBLAS)Class.forName("dev.ludovic.netlib.blas.ForeignLinkerBLAS").getMethod("getInstance").invoke(null))
7171
));
7272
}
7373

0 commit comments

Comments
 (0)