mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-01 03:24:41 +01:00
7 lines
156 B
Python
7 lines
156 B
Python
|
from lightning import Millisatoshi
|
||
|
|
||
|
|
||
|
def test_sum_radd():
|
||
|
result = sum([Millisatoshi(1), Millisatoshi(2), Millisatoshi(3)])
|
||
|
assert int(result) == 6
|