htlcswitch/control_tower_test: move from switch_control_test

This commit is contained in:
Conner Fromknecht 2018-08-10 14:02:50 -07:00
parent 8b2237fc1d
commit 971ae3c744
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -79,7 +79,7 @@ func TestPaymentControlSwitchFail(t *testing.T) {
t.Fatalf("unable to send htlc message: %v", err)
}
pStatus, err := db.FetchPaymentStatus(htlc.PaymentHash)
pStatus, err = db.FetchPaymentStatus(htlc.PaymentHash)
if err != nil {
t.Fatalf("unable to fetch payment status: %v", err)
}
@ -106,7 +106,7 @@ func TestPaymentControlSwitchFail(t *testing.T) {
// Attempt a final payment, which should now fail since the prior
// payment succeed.
if err := pControl.ClearForTakeoff(htlc); err != nil {
if err := pControl.ClearForTakeoff(htlc); err != ErrAlreadyPaid {
t.Fatalf("unable to send htlc message: %v", err)
}
}