From b0c3a76690f2629dbbbef128fb93eae6f48796b6 Mon Sep 17 00:00:00 2001 From: Yan Chen <48968912+chenyan-dfinity@users.noreply.github.com> Date: Mon, 8 Jul 2024 20:34:15 -0700 Subject: [PATCH] fix --- service/pool/tests/canisterPool.test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/pool/tests/canisterPool.test.sh b/service/pool/tests/canisterPool.test.sh index af5a3872..8db099c9 100644 --- a/service/pool/tests/canisterPool.test.sh +++ b/service/pool/tests/canisterPool.test.sh @@ -11,7 +11,7 @@ let init = opt record { nonce_time_to_live = 1; canister_time_to_live = 5_000_000_000; max_family_tree_size = 5; - no_uninstall = true; + no_uninstall = opt true; }; let S = install(wasm, init, null); let nonce = record { timestamp = 1 : int; nonce = 1 : nat }; @@ -25,7 +25,7 @@ let init = opt record { nonce_time_to_live = 1; canister_time_to_live = 5_000_000_000; max_family_tree_size = 5; - no_uninstall = false; + no_uninstall = opt false; }; let S = install(wasm, init, null); let nonce = record { timestamp = 1 : int; nonce = 1 : nat };