Skip to content

Commit 16ee5fd

Browse files
committed
crc: fix typo in test assertion, #6250
1 parent 881e5fd commit 16ee5fd

File tree

1 file changed

+1
-1
lines changed
  • stacks-node/src/burnchains/rpc/bitcoin_rpc_client

1 file changed

+1
-1
lines changed

stacks-node/src/burnchains/rpc/bitcoin_rpc_client/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ pub fn test_convert_btc_to_sat() {
10161016
pub fn test_convert_sat_to_btc() {
10171017
use convert_sat_to_btc_string as to_btc;
10181018

1019-
assert_eq!("1.00000000", to_btc(100_000_000), "SAT 1_000_000_000 ok!");
1019+
assert_eq!("1.00000000", to_btc(100_000_000), "SAT 100_000_000 ok!");
10201020
assert_eq!("0.50000000", to_btc(50_000_000), "SAT 50_000_000 ok!");
10211021
assert_eq!("0.00000001", to_btc(1), "SAT 1 ok!");
10221022
}

0 commit comments

Comments
 (0)