slightly better mars test, still passes
Rafael Kitover [Fri, 21 Aug 2009 04:53:53 +0000 (04:53 +0000)]
t/747mssql_ado.t

index bcd218e..227c9b5 100644 (file)
@@ -45,8 +45,8 @@ for (1..6) {
 }
 
 # test multiple active cursors
-my $rs1 = $schema->resultset('Artist');
-my $rs2 = $schema->resultset('Artist');
+my $rs1 = $schema->resultset('Artist')->search({}, { order_by => 'artistid' });
+my $rs2 = $schema->resultset('Artist')->search({}, { order_by => 'name' });
 
 while ($rs1->next) {
   ok eval { $rs2->next }, 'multiple active cursors';