From 94cb373b6dfdd4ad67e68a4a2a37445aa02730fc Mon Sep 17 00:00:00 2001 From: jackbravo Date: Mon, 3 Sep 2007 18:34:43 +0000 Subject: [PATCH] ticket test group renamed to tickets --- tests/run.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/run.php b/tests/run.php index 3d138b123..e94a1b8e8 100644 --- a/tests/run.php +++ b/tests/run.php @@ -92,11 +92,10 @@ $test = new GroupTest('Doctrine Framework Unit Tests'); //TICKET test cases -$ticket = new GroupTest('Tickets tests'); -$ticket->addTestCase(new Doctrine_Ticket_Njero_TestCase()); +$tickets = new GroupTest('Tickets tests'); +$tickets->addTestCase(new Doctrine_Ticket_Njero_TestCase()); //If you write a ticket testcase add it here like shown above! - -$test->addTestCase($ticket); +$test->addTestCase($tickets); // Connection drivers (not yet fully tested) $driver = new GroupTest("Driver tests");