From a1fc8a3eeeeb408f883c6f73e484edc09e128cdc Mon Sep 17 00:00:00 2001 From: ziggie Date: Tue, 19 Aug 2025 17:21:44 +0200 Subject: [PATCH] paymentsdb: rename db agnostic tests to highlight their behaviour --- payments/db/payment_test.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/payments/db/payment_test.go b/payments/db/payment_test.go index 0ed83112c..413db4140 100644 --- a/payments/db/payment_test.go +++ b/payments/db/payment_test.go @@ -466,8 +466,8 @@ func testDeleteFailedAttempts(t *testing.T, keepFailedPaymentAttempts bool) { } } -// TestKVPaymentsDBMPPRecordValidation tests MPP record validation. -func TestKVPaymentsDBMPPRecordValidation(t *testing.T) { +// TestMPPRecordValidation tests MPP record validation. +func TestMPPRecordValidation(t *testing.T) { t.Parallel() paymentDB := NewTestDB(t) @@ -1181,9 +1181,9 @@ func TestEmptyRoutesGenerateSphinxPacket(t *testing.T) { require.ErrorIs(t, err, route.ErrNoRouteHopsProvided) } -// TestKVPaymentsDBSuccessesWithoutInFlight tests that the payment control will -// disallow calls to Success when no payment is in flight. -func TestKVPaymentsDBSuccessesWithoutInFlight(t *testing.T) { +// TestSuccessesWithoutInFlight tests that the payment control will disallow +// calls to Success when no payment is in flight. +func TestSuccessesWithoutInFlight(t *testing.T) { t.Parallel() paymentDB := NewTestDB(t) @@ -1201,9 +1201,9 @@ func TestKVPaymentsDBSuccessesWithoutInFlight(t *testing.T) { require.ErrorIs(t, err, ErrPaymentNotInitiated) } -// TestKVPaymentsDBFailsWithoutInFlight checks that a strict payment control -// will disallow calls to Fail when no payment is in flight. -func TestKVPaymentsDBFailsWithoutInFlight(t *testing.T) { +// TestFailsWithoutInFlight checks that a strict payment control will disallow +// calls to Fail when no payment is in flight. +func TestFailsWithoutInFlight(t *testing.T) { t.Parallel() paymentDB := NewTestDB(t) @@ -1218,9 +1218,9 @@ func TestKVPaymentsDBFailsWithoutInFlight(t *testing.T) { require.ErrorIs(t, err, ErrPaymentNotInitiated) } -// TestKVPaymentsDBDeletePayments tests that DeletePayments correctly deletes -// information about completed payments from the database. -func TestKVPaymentsDBDeletePayments(t *testing.T) { +// TestDeletePayments tests that DeletePayments correctly deletes information +// about completed payments from the database. +func TestDeletePayments(t *testing.T) { t.Parallel() paymentDB := NewTestDB(t)