From: Aran Deltac Date: Fri, 24 Mar 2006 23:53:44 +0000 (+0000) Subject: Fixed the Positional test to use the new test calss name. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=02f1c2b6d27d062acd981e9dc956f5ee5f3a3efe;p=dbsrgits%2FDBIx-Class-Historic.git Fixed the Positional test to use the new test calss name. --- diff --git a/t/run/26positional.tl b/t/run/26positional.tl index 6d179b7..268f5a6 100644 --- a/t/run/26positional.tl +++ b/t/run/26positional.tl @@ -5,7 +5,7 @@ sub run_tests { plan tests => 321; my $schema = shift; - my $employees = $schema->resultset('Employee::Positional'); + my $employees = $schema->resultset('Employee'); $employees->delete(); foreach (1..5) { @@ -16,7 +16,7 @@ sub run_tests { hammer_rs( $employees ); - DBICTest::Employee::Positional->collection_column('group_id'); + DBICTest::Employee->collection_column('group_id'); $employees->delete(); foreach my $group_id (1..3) { foreach (1..6) {