Skip to content

Commit 106fdfa

Browse files
Fix tests
Co-Authored-By: UdjinM6 <UdjinM6@users.noreply.github.com>
1 parent 6edcf43 commit 106fdfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/multiwallet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def run_test(self):
2323

2424
#check w1 wallet balance
2525
walletinfo = w1.getwalletinfo()
26-
assert_equal(walletinfo['immature_balance'], 50)
26+
assert_equal(walletinfo['immature_balance'], 500)
2727

2828
#check w1 wallet balance
2929
w2 = self.nodes[0] / "wallet/w2"
@@ -33,7 +33,7 @@ def run_test(self):
3333
w3 = self.nodes[0] / "wallet/w3"
3434

3535
w1.generate(101)
36-
assert_equal(w1.getbalance(), 100)
36+
assert_equal(w1.getbalance(), 1000)
3737
assert_equal(w2.getbalance(), 0)
3838
assert_equal(w3.getbalance(), 0)
3939

0 commit comments

Comments
 (0)