@@ -26,19 +26,19 @@ test: install
2626 echo " wallet: $( WALLET) "
2727 echo " hello_cycles: $( HELLO_CYCLES) "
2828 echo " $( dfx canister call hello_cycles wallet_balance) "
29- # canister has just above 3T cycles, so output start with '(3 '
29+ # canister has just above 2.9T cycles, so output start with '(2_9 '
3030 dfx canister call hello_cycles wallet_balance \
31- | grep ' (3 ' && echo ' PASS'
31+ | grep ' (2_9 ' && echo ' PASS'
3232 dfx canister status hello_cycles
3333 dfx canister call $(WALLET ) wallet_send ' (record { canister = principal "$(HELLO_CYCLES)"; amount = (2000000000000:nat64); } )'
34- # 2T cycles added, now contains just above 5T
34+ # 2T cycles added, now contains just above 4.9T
3535 dfx canister call hello_cycles wallet_balance \
36- | grep ' (5 ' && echo ' PASS'
36+ | grep ' (4_9 ' && echo ' PASS'
3737 echo ' (func "$(WALLET)"."wallet_receive", 5000000)'
3838 dfx canister call hello_cycles transfer ' (func "$(WALLET)"."wallet_receive", 5000000)' \
3939 | grep ' 0' && echo ' PASS'
4040 dfx canister call hello_cycles wallet_balance \
41- | grep ' (5 ' && echo ' PASS'
41+ | grep ' (4_9 ' && echo ' PASS'
4242
4343.PHONY : clean
4444.SILENT : clean
0 commit comments