Skip to content

Commit

Permalink
test: fix logging messages for funding push test
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Jan 17, 2017
1 parent c40cb49 commit dc28052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,11 @@ func testBasicChannelFunding(net *networkHarness, t *harnessTest) {
t.Fatalf("unable to get bobs's balance: %v", err)
}
if aliceBal.Balance != int64(chanAmt-pushAmt) {
t.Fatalf("alice's balance is incorrect: expected %v got %x",
t.Fatalf("alice's balance is incorrect: expected %v got %v",
chanAmt-pushAmt, aliceBal)
}
if bobBal.Balance != int64(pushAmt) {
t.Fatalf("bob's balance is incorrect: expected %v got %x",
t.Fatalf("bob's balance is incorrect: expected %v got %v",
pushAmt, bobBal)
}

Expand Down

0 comments on commit dc28052

Please sign in to comment.