From a3274f47ecf824ff6605c7bc41e01f20afead68d Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 21 Jul 2008 16:06:48 +0000 Subject: [PATCH] do not delete the default payment gateways! --- t/Shop/PayDriver.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/t/Shop/PayDriver.t b/t/Shop/PayDriver.t index 1510299cb..a8c4e4e32 100644 --- a/t/Shop/PayDriver.t +++ b/t/Shop/PayDriver.t @@ -471,7 +471,7 @@ my $count = $session->db->quickScalar('select count(*) from paymentGateway where $driver->paymentGatewayId ]); -is ($count, 0, 'delete deleted the object'); +is ($count, 0, 'delete deleted the object'); undef $driver; @@ -481,5 +481,4 @@ undef $driver; #---------------------------------------------------------------------------- # Cleanup END { - $session->db->write('delete from paymentGateway'); }