Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyan-dfinity committed Jul 9, 2024
1 parent f20f6c5 commit b0c3a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/pool/tests/canisterPool.test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand All @@ -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 };
Expand Down

0 comments on commit b0c3a76

Please sign in to comment.