From e4a9f65ee2380d46cabdbb65c1a620d98c09a312 Mon Sep 17 00:00:00 2001 From: microshine Date: Wed, 31 Jan 2024 00:16:33 +0100 Subject: [PATCH] test: fix softhsm path for macos --- test/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/config.ts b/test/config.ts index d82631d7..9f868494 100644 --- a/test/config.ts +++ b/test/config.ts @@ -3,7 +3,7 @@ import * as os from "node:os"; let lib = "/usr/local/lib/softhsm/libsofthsm2.so"; switch (os.platform()) { case "darwin": - lib = "/usr/local/lib/softhsm/libsofthsm2.dylib"; + lib = "/usr/local/lib/softhsm/libsofthsm2.so"; break; case "linux": lib = "/usr/lib/softhsm/libsofthsm2.so";